diff options
author | Saturneric <[email protected]> | 2021-08-29 10:49:58 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-08-29 10:49:58 +0000 |
commit | daaa83549d42395161e34a40e18c3615801b1501 (patch) | |
tree | 7ae4c67a31e9eea8a7bda4719fbdac3ac2e730a9 /include/ui/keypair_details/KeySetExpireDateDialog.h | |
parent | Update version settings. (diff) | |
download | GpgFrontend-daaa83549d42395161e34a40e18c3615801b1501.tar.gz GpgFrontend-daaa83549d42395161e34a40e18c3615801b1501.zip |
Start to rewrite gpg core.
Diffstat (limited to '')
-rw-r--r-- | include/ui/keypair_details/KeySetExpireDateDialog.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/ui/keypair_details/KeySetExpireDateDialog.h b/include/ui/keypair_details/KeySetExpireDateDialog.h index 118bc5ed..11f2a560 100644 --- a/include/ui/keypair_details/KeySetExpireDateDialog.h +++ b/include/ui/keypair_details/KeySetExpireDateDialog.h @@ -27,16 +27,16 @@ #include "GpgFrontend.h" #include "gpg/GpgContext.h" -#include "gpg/GpgKey.h" -#include "gpg/GpgSubKey.h" +#include "gpg/model/GpgKey.h" +#include "gpg/model/GpgSubKey.h" class KeySetExpireDateDialog : public QDialog { Q_OBJECT public: - explicit KeySetExpireDateDialog(GpgME::GpgContext *ctx, const GpgKey &key, const GpgSubKey *subkey, QWidget *parent = nullptr); + explicit KeySetExpireDateDialog(GpgFrontend::GpgContext *ctx, const GpgKey &key, const GpgSubKey *subkey, QWidget *parent = nullptr); private: - GpgME::GpgContext *mCtx; + GpgFrontend::GpgContext *mCtx; const GpgKey &mKey; const GpgSubKey *mSubkey; |