diff options
author | Saturn&Eric <[email protected]> | 2021-12-16 21:20:56 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2021-12-16 21:20:56 +0000 |
commit | 52ac9979bd8c4820a0034d619cb7d1d3e4105d8b (patch) | |
tree | c7524432467825603d83a17f398249d431c28b18 /src/ui/keypair_details/KeySetExpireDateDialog.h | |
parent | Merge pull request #32 from saturneric/develop (diff) | |
parent | Fixed bugs & Improve Speed. (diff) | |
download | GpgFrontend-52ac9979bd8c4820a0034d619cb7d1d3e4105d8b.tar.gz GpgFrontend-52ac9979bd8c4820a0034d619cb7d1d3e4105d8b.zip |
Merge pull request #34 from saturneric/develop
v2.0.3
Diffstat (limited to '')
-rw-r--r-- | src/ui/keypair_details/KeySetExpireDateDialog.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/ui/keypair_details/KeySetExpireDateDialog.h b/src/ui/keypair_details/KeySetExpireDateDialog.h index 37a7f7e4..d4386e43 100644 --- a/src/ui/keypair_details/KeySetExpireDateDialog.h +++ b/src/ui/keypair_details/KeySetExpireDateDialog.h @@ -30,6 +30,8 @@ #include "gpg/model/GpgSubKey.h" #include "ui/GpgFrontendUI.h" +class Ui_ModifiedExpirationDateTime; + namespace GpgFrontend::UI { class KeySetExpireDateDialog : public QDialog { @@ -47,13 +49,10 @@ class KeySetExpireDateDialog : public QDialog { private: void init(); + std::shared_ptr<Ui_ModifiedExpirationDateTime> ui; const GpgKey mKey; const SubkeyId mSubkey; - QDateTimeEdit* dateTimeEdit{}; - QPushButton* confirmButton{}; - QCheckBox* nonExpiredCheck{}; - private slots: void slotConfirm(); void slotNonExpiredChecked(int state); |