Fix compile issue on clang.

This commit is contained in:
Jeff Young 2020-04-20 17:15:26 +01:00
parent 7f1b409305
commit 94e2690fed
1 changed files with 2 additions and 2 deletions

View File

@ -318,8 +318,8 @@ bool PGM_SINGLE_TOP::OnPgmInit()
#endif
static const wxCmdLineEntryDesc desc[] = {
{ wxCMD_LINE_OPTION, "f", "frame", _( "Frame to load" ) },
{ wxCMD_LINE_PARAM, nullptr, nullptr, _( "File to load" ), wxCMD_LINE_VAL_STRING,
{ wxCMD_LINE_OPTION, "f", "frame", _( "Frame to load" ).c_str() },
{ wxCMD_LINE_PARAM, nullptr, nullptr, _( "File to load" ).c_str(), wxCMD_LINE_VAL_STRING,
wxCMD_LINE_PARAM_MULTIPLE | wxCMD_LINE_PARAM_OPTIONAL },
{ wxCMD_LINE_NONE }
};