diff options
author | saturneric <[email protected]> | 2024-11-26 22:04:00 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-11-26 22:07:04 +0000 |
commit | af776283bd5d50363c8777dbb3524fde417cc368 (patch) | |
tree | a633e2e8161dc7b9048af25d81e284c116e217cc /src/ui/dialog/keypair_details/KeyUIDSignDialog.h | |
parent | feat: support eml data decryption (diff) | |
download | GpgFrontend-af776283bd5d50363c8777dbb3524fde417cc368.tar.gz GpgFrontend-af776283bd5d50363c8777dbb3524fde417cc368.zip |
feat: support uid revoke and uid delete operations
Diffstat (limited to 'src/ui/dialog/keypair_details/KeyUIDSignDialog.h')
-rw-r--r-- | src/ui/dialog/keypair_details/KeyUIDSignDialog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/dialog/keypair_details/KeyUIDSignDialog.h b/src/ui/dialog/keypair_details/KeyUIDSignDialog.h index 326321a0..e40529fd 100644 --- a/src/ui/dialog/keypair_details/KeyUIDSignDialog.h +++ b/src/ui/dialog/keypair_details/KeyUIDSignDialog.h @@ -45,7 +45,7 @@ class KeyUIDSignDialog : public GeneralDialog { * @param uid * @param parent */ - explicit KeyUIDSignDialog(int channel, const GpgKey& key, UIDArgsListPtr uid, + explicit KeyUIDSignDialog(int channel, const GpgKey& key, const QString& uid, QWidget* parent = nullptr); signals: @@ -61,7 +61,7 @@ class KeyUIDSignDialog : public GeneralDialog { QPushButton* sign_key_button_; ///< QDateTimeEdit* expires_edit_; ///< QCheckBox* non_expire_check_; ///< - UIDArgsListPtr m_uids_; ///< + QString m_uid_; ///< const GpgKey& m_key_; ///< |