Index: main.cpp =================================================================== diff -u -r2437559b2d4cd4c2ac6a926b4f55652e55e1f616 -r36740a3ee8e7164e70d8627b057624ec0ef1eb8f --- main.cpp (.../main.cpp) (revision 2437559b2d4cd4c2ac6a926b4f55652e55e1f616) +++ main.cpp (.../main.cpp) (revision 36740a3ee8e7164e70d8627b057624ec0ef1eb8f) @@ -68,7 +68,7 @@ const char *gFakeData_default = "00" ; bool gSendEmptyKeepAwake = false ; bool gFakeSeqAtBegin = false ; -bool gDisableHunhandledReport = false ; +bool gDisableUnhandledReport = false ; bool gConsoleoutFrameInterface = false ; bool gConsoleoutCanInterface = false ; @@ -140,17 +140,17 @@ parser.addOption(optionFakeSeqAtBegin); // --- -u : disable-unhandled-report - QCommandLineOption optionDisableHunhandledReport(QStringList() << "u" << "disable-unhandled-report", + QCommandLineOption optionDisableUnhandledReport(QStringList() << "u" << "disable-unhandled-report", QCoreApplication::translate("main", "Disable unhandled messages report as an error in the log")); - parser.addOption(optionDisableHunhandledReport); + parser.addOption(optionDisableUnhandledReport); // --- parse command lines parser.process(*qApp); gConsoleoutCanInterface = parser.isSet(optionConsoleoutCanInterface ); gConsoleoutFrameInterface = parser.isSet(optionConsoleoutFrameInterface ); - gDisableHunhandledReport = parser.isSet(optionDisableHunhandledReport ); + gDisableUnhandledReport = parser.isSet(optionDisableUnhandledReport ); if (parser.isSet(optionSendEmptyKeepAwake)) gSendEmptyKeepAwake = true; bool ok = false;