From 0aedaffed9ef7e8abcedb94cd5faf550b3485a81 Mon Sep 17 00:00:00 2001 From: Dick Hollenbeck Date: Mon, 27 Mar 2017 18:46:34 -0500 Subject: [PATCH] add utf8_test.cpp to project --- tools/utf8_tests.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tools/utf8_tests.cpp diff --git a/tools/utf8_tests.cpp b/tools/utf8_tests.cpp new file mode 100644 index 0000000000..b6e8ae399f --- /dev/null +++ b/tools/utf8_tests.cpp @@ -0,0 +1,15 @@ + + + +#include +#include + +int main( int argc, char** argv ) +{ + + UTF8 bozo = "bozo"; + + wxString s = bozo; + + return 0; +} \ No newline at end of file