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 /src/gpg/UID.cpp | |
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-- | src/gpg/GpgUID.cpp (renamed from src/gpg/UID.cpp) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gpg/UID.cpp b/src/gpg/GpgUID.cpp index a4e6f342..f8f7e8fa 100644 --- a/src/gpg/UID.cpp +++ b/src/gpg/GpgUID.cpp @@ -2,16 +2,16 @@ // Created by eric on 2021/5/22. // -#include "gpg/UID.h" +#include "gpg/GpgUID.h" -UID::UID(gpgme_user_id_t user_id) : +GpgUID::GpgUID(gpgme_user_id_t user_id) : uid(user_id->uid), name(user_id->name), email(user_id->email), comment(user_id->comment), revoked(user_id->revoked), invalid(user_id->invalid) { auto sig = user_id->signatures; while (sig != nullptr) { - signatures.push_back(Signature(sig)); + signatures.push_back(GpgKeySignature(sig)); sig = sig->next; } |