diff options
author | Saturneric <[email protected]> | 2021-06-06 19:41:06 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-06-06 19:41:06 +0000 |
commit | 7191b3bb0caf9d74648820b094a8af63f618e8a8 (patch) | |
tree | a94bac8131da0128b562f0d874bfbdfa271214c8 /include/ui/keypair_details/KeyPairUIDTab.h | |
parent | Adjust and improve the detailed interface of the verification information res... (diff) | |
download | GpgFrontend-7191b3bb0caf9d74648820b094a8af63f618e8a8.tar.gz GpgFrontend-7191b3bb0caf9d74648820b094a8af63f618e8a8.zip |
Add encryption and signature function.
Adjust and improve the dashboard control.
Modify and adjust GpgSignature.
Separate Verify result processing code in code structure.
Add additional operation toolbar function.
Adjust and optimize code structure.
Signed-off-by: Saturneric <[email protected]>
Diffstat (limited to '')
-rw-r--r-- | include/ui/keypair_details/KeyPairUIDTab.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/ui/keypair_details/KeyPairUIDTab.h b/include/ui/keypair_details/KeyPairUIDTab.h index 0dd73f7b..6042ec29 100644 --- a/include/ui/keypair_details/KeyPairUIDTab.h +++ b/include/ui/keypair_details/KeyPairUIDTab.h @@ -50,11 +50,11 @@ private: void createSignPopupMenu(); - void getUIDChecked(QVector<UID> &uids); + void getUIDChecked(QVector<GpgUID> &uids); - bool getUIDSelected(UID &uid); + bool getUIDSelected(GpgUID &uid); - bool getSignSelected(Signature &signature); + bool getSignSelected(GpgKeySignature &signature); GpgME::GpgContext *mCtx; const GpgKey &mKey; @@ -63,8 +63,8 @@ private: QMenu *manageSelectedUIDMenu; QMenu *uidPopupMenu; QMenu *signPopupMenu; - QVector<const UID *> buffered_uids; - QVector<const Signature *> buffered_signatures; + QVector<const GpgUID *> buffered_uids; + QVector<const GpgKeySignature *> buffered_signatures; private slots: |