aboutsummaryrefslogtreecommitdiffstats
path: root/include/ui/SettingsDialog.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/SettingsDialog.h
parentUpdate version settings. (diff)
downloadGpgFrontend-daaa83549d42395161e34a40e18c3615801b1501.tar.gz
GpgFrontend-daaa83549d42395161e34a40e18c3615801b1501.zip
Start to rewrite gpg core.
Diffstat (limited to '')
-rwxr-xr-xinclude/ui/SettingsDialog.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/ui/SettingsDialog.h b/include/ui/SettingsDialog.h
index 72f80917..6e102053 100755
--- a/include/ui/SettingsDialog.h
+++ b/include/ui/SettingsDialog.h
@@ -31,7 +31,7 @@ class GeneralTab : public QWidget {
Q_OBJECT
public:
- explicit GeneralTab(GpgME::GpgContext *ctx, QWidget *parent = nullptr);
+ explicit GeneralTab(GpgFrontend::GpgContext *ctx, QWidget *parent = nullptr);
void setSettings();
@@ -54,7 +54,7 @@ private:
QVector<QString> keyIdsList;
QString serviceToken;
KeyList *mKeyList;
- GpgME::GpgContext *mCtx;
+ GpgFrontend::GpgContext *mCtx;
private slots:
@@ -227,7 +227,7 @@ class SettingsDialog : public QDialog {
Q_OBJECT
public:
- explicit SettingsDialog(GpgME::GpgContext *ctx, QWidget *parent = nullptr);
+ explicit SettingsDialog(GpgFrontend::GpgContext *ctx, QWidget *parent = nullptr);
GeneralTab *generalTab;
SendMailTab *sendMailTab;
@@ -249,7 +249,7 @@ signals:
private:
QTabWidget *tabWidget;
QDialogButtonBox *buttonBox;
- GpgME::GpgContext *mCtx; /** The current gpg context */
+ GpgFrontend::GpgContext *mCtx; /** The current gpg context */
bool restartNeeded{};
bool getRestartNeeded() const;