diff --git a/src/basket_options.h b/src/basket_options.h index 7ae6bd7..f5dfac3 100644 --- a/src/basket_options.h +++ b/src/basket_options.h @@ -1,38 +1,35 @@ /** * SPDX-FileCopyrightText: (C) 2003 by Sébastien Laoût * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef BASKET_OPTIONS_H #define BASKET_OPTIONS_H #include #include #include #include "aboutdata.h" #include "global.h" void setupCmdLineOptions(QCommandLineParser *opts) { - opts->addHelpOption(); - opts->addVersionOption(); - opts->addOption(QCommandLineOption(QStringList() << "d" << "debug", i18n("Show the debug window"))); opts->addOption(QCommandLineOption(QStringList() << "f" << "data-folder", i18n("Custom folder to load and save baskets and other application data."), i18nc("Command line help: --data-folder ", "folder"))); opts->addOption(QCommandLineOption("start-hidden", i18n("Automatically hide the main window in the system tray on startup."))); // opts->addOption(QCommandLineOption(QStringList() << "k" << "use-drkonqi", i18n("On crash, use the standard KDE crash handler rather than send an email."))); opts->addPositionalArgument("file", i18n("Open a basket archive or template.")); } #endif // BASKET_OPTIONS_H