diff options
author | Saturn&Eric <[email protected]> | 2022-01-05 20:02:19 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2022-01-05 20:02:19 +0000 |
commit | a3ca1bf1d4404327d68d3d49127085638c272152 (patch) | |
tree | deb10c33977e5002fa6e9b434f2b07d2719a4e31 /src/ui/keygen/SubkeyGenerateDialog.h | |
parent | Merge pull request #37 from saturneric/document (diff) | |
parent | <doc>(navbar): take repository and GitHub apart. (diff) | |
download | GpgFrontend-a3ca1bf1d4404327d68d3d49127085638c272152.tar.gz GpgFrontend-a3ca1bf1d4404327d68d3d49127085638c272152.zip |
Merge pull request #36 from saturneric/developv2.0.4
v2.0.4
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(); /** |