diff options
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; |