aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/Wizard.cpp
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2025-02-02 17:02:44 +0000
committersaturneric <[email protected]>2025-02-02 17:02:44 +0000
commit1e95a70ab32fcdb8ef42e7ce8df5ba40b1f251ab (patch)
tree8c9cdb0cf18d5a81f68d26ff229a5618bfd5920d /src/ui/dialog/Wizard.cpp
parentfix: solve lower/upper case name conflict (diff)
downloadGpgFrontend-1e95a70ab32fcdb8ef42e7ce8df5ba40b1f251ab.tar.gz
GpgFrontend-1e95a70ab32fcdb8ef42e7ce8df5ba40b1f251ab.zip
feat: improve KeyGenerateDialog
Diffstat (limited to 'src/ui/dialog/Wizard.cpp')
-rw-r--r--src/ui/dialog/Wizard.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dialog/Wizard.cpp b/src/ui/dialog/Wizard.cpp
index 243fb846..8e77dada 100644
--- a/src/ui/dialog/Wizard.cpp
+++ b/src/ui/dialog/Wizard.cpp
@@ -195,7 +195,7 @@ KeyGenPage::KeyGenPage(QWidget* parent) : QWizardPage(parent) {
int KeyGenPage::nextId() const { return Wizard::kPAGE_CONCLUSION; }
void KeyGenPage::slot_generate_key_dialog() {
- (new KeyGenDialog(kGpgFrontendDefaultChannel, this))->show();
+ (new KeyGenerateDialog(kGpgFrontendDefaultChannel, this))->show();
wizard()->next();
}