Fix build issue on OSX.

This commit is contained in:
Jeff Young 2018-10-23 22:39:52 +01:00
parent 96e65c7f23
commit 4061f1cce3
1 changed files with 3 additions and 3 deletions

View File

@ -77,12 +77,12 @@ bool parse(std::istream& aStream, bool aVerbose )
static const wxCmdLineEntryDesc g_cmdLineDesc [] =
{
{ wxCMD_LINE_SWITCH, "h", "help",
_( "displays help on the command line parameters" ),
_( "displays help on the command line parameters" ).wx_str(),
wxCMD_LINE_VAL_NONE, wxCMD_LINE_OPTION_HELP },
{ wxCMD_LINE_SWITCH, "v", "verbose",
_( "print parsing information") },
_( "print parsing information").wx_str() },
{ wxCMD_LINE_PARAM, nullptr, nullptr,
_( "input file" ),
_( "input file" ).wx_str(),
wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL | wxCMD_LINE_PARAM_MULTIPLE },
{ wxCMD_LINE_NONE }
};