diff options
Diffstat (limited to '')
-rw-r--r-- | src/ui/dialog/key_generate/KeygenDialog.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/ui/dialog/key_generate/KeygenDialog.h b/src/ui/dialog/key_generate/KeygenDialog.h index e4feb7a3..8e424094 100644 --- a/src/ui/dialog/key_generate/KeygenDialog.h +++ b/src/ui/dialog/key_generate/KeygenDialog.h @@ -89,9 +89,13 @@ class KeyGenDialog : public GeneralDialog { */ QStringList error_messages_; ///< List of errors occurring when checking ///< entries of line edits + std::shared_ptr<GenKeyInfo> gen_key_info_ = SecureCreateSharedObject<GenKeyInfo>(); ///< - QDialogButtonBox* button_box_; ///< Box for standard buttons + std::shared_ptr<GenKeyInfo> gen_subkey_info_ = + SecureCreateSharedObject<GenKeyInfo>(); ///< + + QDialogButtonBox* button_box_; ///< Box for standard buttons QLabel* error_label_{}; ///< Label containing error message QLineEdit* name_edit_{}; ///< Line edit for the keys name QLineEdit* email_edit_{}; ///< Line edit for the keys email |