@@ -38,17 +38,17 @@ int main(int argc, char **argv)
QCommandLineParserparser;
aboutData.setupCommandLine(&parser);
QCommandLineOptiontestModeOption(QStringLiteral("test-mode"),i18n("Enable QStandardPaths test mode, i.e. read/write settings used by unittests"));
constQCommandLineOptiontestModeOption(QStringLiteral("test-mode"),i18n("Enable QStandardPaths test mode, i.e. read/write settings used by unittests"));
parser.addOption(testModeOption);
QCommandLineOptionswitchFullDebugOption(QStringLiteral("enable-full-debug"),i18n("Activate full debug for all modules."));
constQCommandLineOptionswitchFullDebugOption(QStringLiteral("enable-full-debug"),i18n("Activate full debug for all modules."));
parser.addOption(switchFullDebugOption);
QCommandLineOptionswitchOffDebugOption(QStringLiteral("disable-full-debug"),i18n("Disable full debug for all modules."));
constQCommandLineOptionswitchOffDebugOption(QStringLiteral("disable-full-debug"),i18n("Disable full debug for all modules."));