Index: main.cpp =================================================================== diff -u -r73b965e55528619f22a12ae3b3408c9dcecc9144 -reedecdb4324b51307e4cf94f782d05591d6ceba9 --- main.cpp (.../main.cpp) (revision 73b965e55528619f22a12ae3b3408c9dcecc9144) +++ main.cpp (.../main.cpp) (revision eedecdb4324b51307e4cf94f782d05591d6ceba9) @@ -69,7 +69,7 @@ bool gSendEmptyKeepAwake = false ; bool gFakeSeqAtBegin = false ; bool gDisableHunhandledReport = false ; -bool gDisableAlarms = false ; +bool gDisableTimeout = false ; bool gConsoleoutFrameInterface = false ; bool gConsoleoutCanInterface = false ; @@ -147,9 +147,9 @@ parser.addOption(optionDisableHunhandledReport); // --- -u : disable-unhandled-report - QCommandLineOption optionDisableAlarms(QStringList() << "q" << "disable-alarms", - QCoreApplication::translate("main", "Disables UI display of alarms")); - parser.addOption(optionDisableAlarms); + QCommandLineOption optionDisableTimeout(QStringList() << "q" << "disable-timeout", + QCoreApplication::translate("main", "Disables HD communication timeout")); + parser.addOption(optionDisableTimeout); // --- parse command lines @@ -158,7 +158,7 @@ gConsoleoutCanInterface = parser.isSet(optionConsoleoutCanInterface ); gConsoleoutFrameInterface = parser.isSet(optionConsoleoutFrameInterface ); gDisableHunhandledReport = parser.isSet(optionDisableHunhandledReport ); - gDisableAlarms = parser.isSet(optionDisableAlarms ); + gDisableTimeout = parser.isSet(optionDisableTimeout ); if (parser.isSet(optionSendEmptyKeepAwake)) gSendEmptyKeepAwake = true; bool ok = false;