diff options
author | Saturneric <[email protected]> | 2021-05-25 19:12:11 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-05-25 19:12:11 +0000 |
commit | 001db514d1b447892bfae71640bd58567cb7cbcf (patch) | |
tree | 4b990ed6966e1e33bb3888f254dc4a7812d1760a /include/ui/keypair_details/KeySignDialog.h | |
parent | Streamline, expand and improve the interface of GpgContext. (diff) | |
download | GpgFrontend-001db514d1b447892bfae71640bd58567cb7cbcf.tar.gz GpgFrontend-001db514d1b447892bfae71640bd58567cb7cbcf.zip |
Fix some problems caused by negligence.
Basically complete the function of signing the key.
There are still problems with the refresh mechanism.
Signed-off-by: Saturneric <[email protected]>
Diffstat (limited to '')
-rw-r--r-- | include/ui/keypair_details/KeySignDialog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ui/keypair_details/KeySignDialog.h b/include/ui/keypair_details/KeySignDialog.h index 075459de..21c8470b 100644 --- a/include/ui/keypair_details/KeySignDialog.h +++ b/include/ui/keypair_details/KeySignDialog.h @@ -29,14 +29,14 @@ private: QCheckBox *nonExpireCheck; - const QVector<UID> &mUids; + const QVector<UID> mUids; const GpgKey &mKey; private slots: - void slotSignKey(); + void slotSignKey(bool clicked); }; |