aboutsummaryrefslogtreecommitdiffstats
path: root/include/ui/Wizard.h
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2021-08-29 10:49:58 +0000
committerSaturneric <[email protected]>2021-08-29 10:49:58 +0000
commitdaaa83549d42395161e34a40e18c3615801b1501 (patch)
tree7ae4c67a31e9eea8a7bda4719fbdac3ac2e730a9 /include/ui/Wizard.h
parentUpdate version settings. (diff)
downloadGpgFrontend-daaa83549d42395161e34a40e18c3615801b1501.tar.gz
GpgFrontend-daaa83549d42395161e34a40e18c3615801b1501.zip
Start to rewrite gpg core.
Diffstat (limited to '')
-rw-r--r--include/ui/Wizard.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/ui/Wizard.h b/include/ui/Wizard.h
index 79c7e321..e38bc560 100644
--- a/include/ui/Wizard.h
+++ b/include/ui/Wizard.h
@@ -40,10 +40,10 @@ public:
Page_Conclusion
};
- Wizard(GpgME::GpgContext *ctx, KeyMgmt *keyMgmt, QWidget *parent = nullptr);
+ Wizard(GpgFrontend::GpgContext *ctx, KeyMgmt *keyMgmt, QWidget *parent = nullptr);
private:
- GpgME::GpgContext *mCtx;
+ GpgFrontend::GpgContext *mCtx;
KeyMgmt *mKeyMgmt;
QString appPath;
QSettings settings;
@@ -96,7 +96,7 @@ class KeyGenPage : public QWizardPage {
Q_OBJECT
public:
- explicit KeyGenPage(GpgME::GpgContext *ctx, QWidget *parent = nullptr);
+ explicit KeyGenPage(GpgFrontend::GpgContext *ctx, QWidget *parent = nullptr);
[[nodiscard]] int nextId() const override;
@@ -105,7 +105,7 @@ private slots:
void slotGenerateKeyDialog();
private:
- GpgME::GpgContext *mCtx;
+ GpgFrontend::GpgContext *mCtx;
};
class ConclusionPage : public QWizardPage {