diff options
author | Saturneric <[email protected]> | 2021-05-28 19:21:46 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-05-28 19:21:46 +0000 |
commit | a5c3aa5ceff300cad9203f3620f16920e726a762 (patch) | |
tree | bb375530f126f29746f4f4aa10985831beefec79 /include/gpg/UID.h | |
parent | Adjust part of the text of the UI interface of the UID operation tab. (diff) | |
download | GpgFrontend-a5c3aa5ceff300cad9203f3620f16920e726a762.tar.gz GpgFrontend-a5c3aa5ceff300cad9203f3620f16920e726a762.zip |
Make eligible keys enter the signature candidate list.
Added delete UID interface and function.
Added setting as the main UID function.
Added the delete key signature menu and function (there is a problem).
Improve the presentation of key list items
Improve the page function of KeyList.
Added pop-up menu for UID list operation on UIDTab interface.
Signed-off-by: Saturneric <[email protected]>
Diffstat (limited to '')
-rw-r--r-- | include/gpg/UID.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/gpg/UID.h b/include/gpg/UID.h index d7a0f3bd..c048c7ad 100644 --- a/include/gpg/UID.h +++ b/include/gpg/UID.h @@ -41,6 +41,10 @@ struct UID { QString uid{}; + bool revoked; + + bool invalid; + QVector<Signature> signatures; UID() = default; |