diff options
Diffstat (limited to 'src/MenuCreator.cc')
-rw-r--r-- | src/MenuCreator.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/MenuCreator.cc b/src/MenuCreator.cc index 9884187..74968e3 100644 --- a/src/MenuCreator.cc +++ b/src/MenuCreator.cc | |||
@@ -328,7 +328,7 @@ void translateMenuItem(FbTk::Parser &parse, ParseItem &pitem, | |||
328 | // we need to attach command to arguments so command parser can parse it | 328 | // we need to attach command to arguments so command parser can parse it |
329 | string line = str_key + " " + str_cmd; | 329 | string line = str_key + " " + str_cmd; |
330 | FbTk::RefCount<FbTk::Command<void> > command(FbTk::CommandParser<void>::instance().parse(line)); | 330 | FbTk::RefCount<FbTk::Command<void> > command(FbTk::CommandParser<void>::instance().parse(line)); |
331 | if (*command != 0) { | 331 | if (command != 0) { |
332 | // special NLS default labels | 332 | // special NLS default labels |
333 | if (str_label.empty()) { | 333 | if (str_label.empty()) { |
334 | if (str_key == "reconfig" || str_key == "reconfigure") { | 334 | if (str_key == "reconfig" || str_key == "reconfigure") { |