X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ce939fe1232b055eb1244df3d963820d861490e3..861b3043ca08b53d6110fd2c95c70ca5e9d25885:/tests/benchmarks/printfbench.cpp diff --git a/tests/benchmarks/printfbench.cpp b/tests/benchmarks/printfbench.cpp index 4fa8c3dbee..147cfa1b23 100644 --- a/tests/benchmarks/printfbench.cpp +++ b/tests/benchmarks/printfbench.cpp @@ -31,22 +31,23 @@ #include #include #include +#include // ---------------------------------------------------------------------------- // command line // ---------------------------------------------------------------------------- -#define HELP_SWITCH wxT("h") -#define NUMBENCHMARK_OPTION wxT("n") +#define HELP_SWITCH "h" +#define NUMBENCHMARK_OPTION "n" static const wxCmdLineEntryDesc g_cmdLineDesc[] = { - { wxCMD_LINE_SWITCH, HELP_SWITCH, wxT("help"), - wxT("displays help on the command line parameters") }, + { wxCMD_LINE_SWITCH, HELP_SWITCH, "help", + "displays help on the command line parameters" }, - { wxCMD_LINE_OPTION, NUMBENCHMARK_OPTION, wxT("numtest"), - wxT("the number of wxPrintf() calls to benchmark"), wxCMD_LINE_VAL_NUMBER }, + { wxCMD_LINE_OPTION, NUMBENCHMARK_OPTION, "numtest", + "the number of wxPrintf() calls to benchmark", wxCMD_LINE_VAL_NUMBER }, { wxCMD_LINE_NONE } };