aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/keypair_details/KeyUIDSignDialog.h
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2021-11-29 04:43:00 +0000
committerSaturneric <[email protected]>2021-11-29 04:47:06 +0000
commit839878e0a2c5dff8ed9d9422aaeebeee0e5ba964 (patch)
tree2b93ba3943053871ba39fd1b80966521bd77b4e8 /src/ui/keypair_details/KeyUIDSignDialog.h
parentFix Known Bugs. (diff)
downloadGpgFrontend-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.h8
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;