diff options
author | Saturneric <[email protected]> | 2021-11-29 04:43:00 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-11-29 04:47:06 +0000 |
commit | 839878e0a2c5dff8ed9d9422aaeebeee0e5ba964 (patch) | |
tree | 2b93ba3943053871ba39fd1b80966521bd77b4e8 /src/ui/keypair_details/KeyUIDSignDialog.h | |
parent | Fix Known Bugs. (diff) | |
download | GpgFrontend-839878e0a2c5dff8ed9d9422aaeebeee0e5ba964.tar.gz GpgFrontend-839878e0a2c5dff8ed9d9422aaeebeee0e5ba964.zip |
Solve uid management, related update and other known issues.
Diffstat (limited to 'src/ui/keypair_details/KeyUIDSignDialog.h')
-rw-r--r-- | src/ui/keypair_details/KeyUIDSignDialog.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/ui/keypair_details/KeyUIDSignDialog.h b/src/ui/keypair_details/KeyUIDSignDialog.h index cd35c4e6..1bd68416 100644 --- a/src/ui/keypair_details/KeyUIDSignDialog.h +++ b/src/ui/keypair_details/KeyUIDSignDialog.h @@ -35,10 +35,12 @@ class KeyUIDSignDialog : public QDialog { Q_OBJECT public: - explicit KeyUIDSignDialog(const GpgKey& key, - const UIDArgsListPtr& uid, + explicit KeyUIDSignDialog(const GpgKey& key, UIDArgsListPtr uid, QWidget* parent = nullptr); + signals: + void signalKeyUIDSignUpdate(); + private: KeyList* mKeyList; @@ -48,7 +50,7 @@ class KeyUIDSignDialog : public QDialog { QCheckBox* nonExpireCheck; - const UIDArgsListPtr& mUids; + UIDArgsListPtr mUids; const GpgKey& mKey; |