diff options
author | Saturneric <[email protected]> | 2022-01-04 10:49:11 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-01-04 10:49:11 +0000 |
commit | f297a701bbcfa5f0586cc02af29a4e9af281910c (patch) | |
tree | 00d869b86e967a780f90e51d30a85be3d236a230 /src/ui/keygen/SubkeyGenerateDialog.h | |
parent | <fix>(ui): improve ui. (diff) | |
download | GpgFrontend-f297a701bbcfa5f0586cc02af29a4e9af281910c.tar.gz GpgFrontend-f297a701bbcfa5f0586cc02af29a4e9af281910c.zip |
<fix, refactor>(core, ui): fixed known bugs for v2.0.4-beta.1.
1. longer expire date for keygen.
2. version system improved and fixed.
3. include ui text not translated.
4. improve ui.
Diffstat (limited to '')
-rw-r--r-- | src/ui/keygen/SubkeyGenerateDialog.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ui/keygen/SubkeyGenerateDialog.h b/src/ui/keygen/SubkeyGenerateDialog.h index ec7c9fb1..78f3ac92 100644 --- a/src/ui/keygen/SubkeyGenerateDialog.h +++ b/src/ui/keygen/SubkeyGenerateDialog.h @@ -41,9 +41,10 @@ class SubkeyGenerateDialog : public QDialog { void SubKeyGenerated(); private: - GpgKey mKey; + GpgKey key_; - std::unique_ptr<GenKeyInfo> genKeyInfo = std::make_unique<GenKeyInfo>(true); + std::unique_ptr<GenKeyInfo> gen_key_info_ = + std::make_unique<GenKeyInfo>(true); QGroupBox* keyUsageGroupBox{}; QDialogButtonBox* buttonBox; /** Box for standardbuttons */ @@ -54,12 +55,11 @@ class SubkeyGenerateDialog : public QDialog { QCheckBox* expireCheckBox{}; /** Checkbox, if key should expire */ // ENCR, SIGN, CERT, AUTH - std::vector<QCheckBox*> keyUsageCheckBoxes; + std::vector<QCheckBox*> key_usage_check_boxes_; + QDateTime max_date_time_; QGroupBox* create_key_usage_group_box(); - QGroupBox* create_basic_info_group_box(); - void set_signal_slot(); /** |