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/gpg/GpgKey.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/gpg/GpgKey.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/gpg/GpgKey.h b/include/gpg/GpgKey.h index f83a2a1e..9bf33111 100644 --- a/include/gpg/GpgKey.h +++ b/include/gpg/GpgKey.h @@ -25,7 +25,7 @@ #ifndef GPGFRONTEND_GPGKEY_H #define GPGFRONTEND_GPGKEY_H -#include "UID.h" +#include "GpgUID.h" #include "GpgSubKey.h" class GpgKey { @@ -62,7 +62,7 @@ public: QVector<GpgSubKey> subKeys; - QVector<UID> uids; + QVector<GpgUID> uids; gpgme_key_t key_refer = nullptr; |