another wxCmdLineEntryDesc compilation fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48990 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-09-30 00:50:29 +00:00
parent 457e5a40e7
commit 09e89ab1b6

View File

@@ -38,16 +38,16 @@
// command line // command line
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
#define HELP_SWITCH wxT("h") #define HELP_SWITCH "h"
#define NUMBENCHMARK_OPTION wxT("n") #define NUMBENCHMARK_OPTION "n"
static const wxCmdLineEntryDesc g_cmdLineDesc[] = static const wxCmdLineEntryDesc g_cmdLineDesc[] =
{ {
{ wxCMD_LINE_SWITCH, HELP_SWITCH, wxT("help"), { wxCMD_LINE_SWITCH, HELP_SWITCH, "help",
wxT("displays help on the command line parameters") }, "displays help on the command line parameters" },
{ wxCMD_LINE_OPTION, NUMBENCHMARK_OPTION, wxT("numtest"), { wxCMD_LINE_OPTION, NUMBENCHMARK_OPTION, "numtest",
wxT("the number of wxPrintf() calls to benchmark"), wxCMD_LINE_VAL_NUMBER }, "the number of wxPrintf() calls to benchmark", wxCMD_LINE_VAL_NUMBER },
{ wxCMD_LINE_NONE } { wxCMD_LINE_NONE }
}; };