fix wxCmdLineEntryDesc compilation after latest changes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48696 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-09-14 23:26:06 +00:00
parent f3b84896e0
commit aa3b041ed7

View File

@@ -88,15 +88,15 @@ void TestApp::OnInitCmdLine(wxCmdLineParser& parser)
wxAppConsole::OnInitCmdLine(parser); wxAppConsole::OnInitCmdLine(parser);
static const wxCmdLineEntryDesc cmdLineDesc[] = { static const wxCmdLineEntryDesc cmdLineDesc[] = {
{ wxCMD_LINE_SWITCH, _T("l"), _T("list"), { wxCMD_LINE_SWITCH, "l", "list",
_T("list the test suites, do not run them"), "list the test suites, do not run them",
wxCMD_LINE_VAL_NONE, 0 }, wxCMD_LINE_VAL_NONE, 0 },
{ wxCMD_LINE_SWITCH, _T("L"), _T("longlist"), { wxCMD_LINE_SWITCH, "L", "longlist",
_T("list the test cases, do not run them"), "list the test cases, do not run them",
wxCMD_LINE_VAL_NONE, 0 }, wxCMD_LINE_VAL_NONE, 0 },
{ wxCMD_LINE_PARAM, "", "", _T("REGISTRY"), wxCMD_LINE_VAL_STRING, { wxCMD_LINE_PARAM, NULL, NULL, "REGISTRY", wxCMD_LINE_VAL_STRING,
wxCMD_LINE_PARAM_OPTIONAL | wxCMD_LINE_PARAM_MULTIPLE }, wxCMD_LINE_PARAM_OPTIONAL | wxCMD_LINE_PARAM_MULTIPLE },
{ wxCMD_LINE_NONE , "", "", "", wxCMD_LINE_VAL_NONE, 0 } wxCMD_LINE_DESC_END
}; };
parser.SetDesc(cmdLineDesc); parser.SetDesc(cmdLineDesc);