]> git.saurik.com Git - wxWidgets.git/commitdiff
another wxCmdLineEntryDesc compilation fix
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 30 Sep 2007 00:50:29 +0000 (00:50 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 30 Sep 2007 00:50:29 +0000 (00:50 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48990 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

tests/benchmarks/printfbench.cpp

index 9187aa72083389e14ce5d4750212e6cfbcf9b105..147cfa1b2319e7dfd3771fb7ba033604a84ebc47 100644 (file)
 // 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 }
 };