diff options
author | Saturneric <[email protected]> | 2021-12-02 19:49:32 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-12-02 19:49:32 +0000 |
commit | 6027b6098ac4e8dfdc75fc08e3f5d3b3b2997ef3 (patch) | |
tree | a399d2c830dadf6750ddb44a69309b443255846c /src/ui/Wizard.cpp | |
parent | Modified & Improve (diff) | |
download | GpgFrontend-6027b6098ac4e8dfdc75fc08e3f5d3b3b2997ef3.tar.gz GpgFrontend-6027b6098ac4e8dfdc75fc08e3f5d3b3b2997ef3.zip |
Fix and Modified.
1. Fix known issues.
2. Modified Settings.
3. Modified parts of modules.
Diffstat (limited to 'src/ui/Wizard.cpp')
-rw-r--r-- | src/ui/Wizard.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/ui/Wizard.cpp b/src/ui/Wizard.cpp index 996efa7e..67af385b 100644 --- a/src/ui/Wizard.cpp +++ b/src/ui/Wizard.cpp @@ -28,9 +28,7 @@ namespace GpgFrontend::UI { -Wizard::Wizard(KeyMgmt* keyMgmt, QWidget* parent) : QWizard(parent) { - mKeyMgmt = keyMgmt; - +Wizard::Wizard(QWidget* parent) : QWizard(parent) { setPage(Page_Intro, new IntroPage(this)); setPage(Page_Choose, new ChoosePage(this)); setPage(Page_GenKey, new KeyGenPage(this)); |