From eba2ed695c7b0078d706880694def2573cb09d06 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Mon, 13 Apr 2020 12:47:19 +0300 Subject: [PATCH] Better looking comments. --- src/app/puzzle/vpuzzlecommandline.h | 28 +++++++--------------------- 1 file changed, 7 insertions(+), 21 deletions(-) diff --git a/src/app/puzzle/vpuzzlecommandline.h b/src/app/puzzle/vpuzzlecommandline.h index 737592e89..a7f403e80 100644 --- a/src/app/puzzle/vpuzzlecommandline.h +++ b/src/app/puzzle/vpuzzlecommandline.h @@ -15,34 +15,22 @@ class VPuzzleCommandLine: public QObject public: virtual ~VPuzzleCommandLine() = default; - /** - * @brief if user enabled export from cmd - */ + /** @brief if user enabled export from cmd */ bool IsExportEnabled() const; - /** - * @brief the base name of layout file or empty string if not - */ + /** @brief the base name of layout file or empty string if not */ QString OptionBaseName() const; - /** - * @brief if user enabled test mode from cmd - */ + /** @brief if user enabled test mode from cmd */ bool IsTestModeEnabled() const; - /** - * @brief if gui enabled or not - */ + /** @brief if gui enabled or not */ bool IsGuiEnabled() const; - /** - * @brief the file name which should be loaded - */ + /** @brief the file name which should be loaded */ QStringList OptionFileNames() const; - /** - * @brief if high dpi scaling is enabled - */ + /** @brief if high dpi scaling is enabled */ bool IsNoScalingEnabled() const; protected: VPuzzleCommandLine(); @@ -55,9 +43,7 @@ private: QCommandLineParser parser; bool isGuiEnabled; - /** - * @brief add options to the QCommandLineParser that there are in the cmd can be - */ + /** @brief add options to the QCommandLineParser that there are in the cmd can be */ void InitCommandLineOptions(); bool IsOptionSet(const QString &option)const;