commit 0745673f907a15c208eb83d2b9e93593ef9ea1d4
parent c7f2715130055ffafea162d05549c371d5ed1cbd
Author: Alexander Kojevnikov <alexander@kojevnikov.com>
Date: Thu, 16 Aug 2012 22:07:33 -0700
wxWidgets 2.9 compatibility
Diffstat:
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/src/spek.cc b/src/spek.cc
@@ -58,20 +58,21 @@ void Spek::OnInitCmdLine(wxCmdLineParser& parser)
{
wxCmdLineEntryDesc desc[] = {{
wxCMD_LINE_SWITCH,
- wxT("h"),
- wxT("help"), _("Show this help message"),
+ wxT_2("h"),
+ wxT_2("help"),
+ wxT_2("Show this help message"),
wxCMD_LINE_VAL_NONE,
wxCMD_LINE_OPTION_HELP
}, {
wxCMD_LINE_SWITCH,
- wxT("V"),
- wxT("version"),
- _("Display the version and exit")
+ wxT_2("V"),
+ wxT_2("version"),
+ wxT_2("Display the version and exit")
}, {
wxCMD_LINE_PARAM,
NULL,
NULL,
- _("FILE"),
+ wxT_2("FILE"),
wxCMD_LINE_VAL_STRING,
wxCMD_LINE_PARAM_OPTIONAL
}, {