diff options
author | saturneric <[email protected]> | 2025-02-04 15:17:16 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-02-04 15:17:16 +0000 |
commit | 4050dd0db4ff31c3de1a966ceade1c20540c63b5 (patch) | |
tree | ff948010519560a382545768cbb8b7b4ec9a580e /src/ui/dialog/Wizard.h | |
parent | Merge branch 'develop' (diff) | |
download | GpgFrontend-4050dd0db4ff31c3de1a966ceade1c20540c63b5.tar.gz GpgFrontend-4050dd0db4ff31c3de1a966ceade1c20540c63b5.zip |
fix: solve discovered issues before release v2.1.7
Diffstat (limited to 'src/ui/dialog/Wizard.h')
-rw-r--r-- | src/ui/dialog/Wizard.h | 32 |
1 files changed, 1 insertions, 31 deletions
diff --git a/src/ui/dialog/Wizard.h b/src/ui/dialog/Wizard.h index 91a5f846..780cd0ad 100644 --- a/src/ui/dialog/Wizard.h +++ b/src/ui/dialog/Wizard.h @@ -130,37 +130,6 @@ class ChoosePage : public QWizardPage { * @brief * */ -class KeyGenPage : public QWizardPage { - Q_OBJECT - - public: - /** - * @brief Construct a new Key Gen Page object - * - * @param parent - */ - explicit KeyGenPage(QWidget* parent = nullptr); - - /** - * @brief - * - * @return int - */ - [[nodiscard]] int nextId() const override; - - private slots: - - /** - * @brief - * - */ - void slot_generate_key_dialog(); -}; - -/** - * @brief - * - */ class ConclusionPage : public QWizardPage { Q_OBJECT @@ -181,6 +150,7 @@ class ConclusionPage : public QWizardPage { private: QCheckBox* dont_show_wizard_checkbox_; ///< + QCheckBox* check_updates_checkbox_; ///< QCheckBox* open_help_check_box_; ///< }; |