diff options
author | Saturn&Eric <[email protected]> | 2021-12-05 19:32:25 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2021-12-05 19:32:25 +0000 |
commit | e3ecf7cb0e5fc3058760ac28d58ad9766e9037b6 (patch) | |
tree | 4108a6205fb517a694d65b3044f7369f32b43862 /src/ui/Wizard.h | |
parent | Merge branch 'main' into develop (diff) | |
parent | Improve UI (diff) | |
download | GpgFrontend-e3ecf7cb0e5fc3058760ac28d58ad9766e9037b6.tar.gz GpgFrontend-e3ecf7cb0e5fc3058760ac28d58ad9766e9037b6.zip |
Merge pull request #27 from saturneric/develop-ui
Improve UI
Diffstat (limited to '')
-rw-r--r-- | src/ui/Wizard.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/ui/Wizard.h b/src/ui/Wizard.h index 8d7395db..7145d310 100644 --- a/src/ui/Wizard.h +++ b/src/ui/Wizard.h @@ -40,14 +40,12 @@ class Wizard : public QWizard { public: enum WizardPages { Page_Intro, Page_Choose, Page_GenKey, Page_Conclusion }; - Wizard(QWidget* parent = nullptr); + explicit Wizard(QWidget* parent = nullptr); private slots: - void slotWizardAccepted(); signals: - void signalOpenHelp(QString page); }; @@ -57,14 +55,7 @@ class IntroPage : public QWizardPage { public: explicit IntroPage(QWidget* parent = nullptr); - QHash<QString, QString> languages; - [[nodiscard]] int nextId() const override; - - private: - private slots: - - // void slotLangChange(const QString& lang); }; class ChoosePage : public QWizardPage { |