Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Müller <80399010+fmoc@users.noreply.github.com>2021-06-14 14:45:09 +0300
committerGitHub <noreply@github.com>2021-06-14 14:45:09 +0300
commitc366cf93aab29b1bb5491eca1ed55dae50a523a4 (patch)
treea394044b12f52ee9be9a7afb957c34e4ece8ec47 /src/gui/application.h
parentdadccabc56063b7a8c98657552403d5414fe8e6a (diff)
Replace custom argument parsing with QCommandLineParser (#8632)
* Replace custom argument parsing with QCommandLineParser * Remove obsolete --logwindow option * Translate all strings in commandline arguments parsing * Use QCommandLineParser to display help and version information This commit further eliminates the now-obsolete showHint function. QCommandLineParser does not show a hint to use --help, so we should no longer do this either in order to provide a unified UX. * Parse arguments passed to method as parameter * Ensure correct order of format string arguments
Diffstat (limited to 'src/gui/application.h')
-rw-r--r--src/gui/application.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/gui/application.h b/src/gui/application.h
index 547367b4a..30c708c28 100644
--- a/src/gui/application.h
+++ b/src/gui/application.h
@@ -59,14 +59,7 @@ public:
explicit Application(int &argc, char **argv);
~Application() override;
- bool giveHelp();
- void showHelp();
- void showHint(const QString &errorHint);
bool debugMode();
- bool versionOnly(); // only display the version?
- void showVersion();
- bool listAvailableTranslationsOnly();
- void listAvailableTranslations();
void showSettingsDialog();
@@ -110,8 +103,6 @@ protected slots:
void slotSystemOnlineConfigurationChanged(QNetworkConfiguration);
private:
- void setHelp();
-
/**
* Maybe a newer version of the client was used with this config file:
* if so, backup, confirm with user and remove the config that can't be read.
@@ -122,17 +113,11 @@ private:
Theme *_theme;
- bool _helpOnly;
- bool _versionOnly;
- bool _listAvailableTranslationsOnly;
-
-
#ifdef Q_OS_LINUX
QElapsedTimer _startedAt;
#endif
// options from command line:
- bool _showLogWindow;
bool _showSettings = false;
bool _quitInstance = false;
QString _logFile;