diff options
author | Saturneric <[email protected]> | 2021-12-16 18:18:38 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-12-16 18:18:38 +0000 |
commit | 2874ebd5e56a7da7f7e7c96da392199b296d909a (patch) | |
tree | e6b78bcbb33282e652cd47df59987fc5932725c7 /src/ui/keypair_details/KeySetExpireDateDialog.h | |
parent | Fixed Known Problem. (diff) | |
download | GpgFrontend-2874ebd5e56a7da7f7e7c96da392199b296d909a.tar.gz GpgFrontend-2874ebd5e56a7da7f7e7c96da392199b296d909a.zip |
Fixed & Improve.
1. Fixed Known Issues.
2. Improve UI.
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); |