diff options
author | Saturneric <[email protected]> | 2021-06-19 10:28:30 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-06-19 10:28:30 +0000 |
commit | 7377178bc7214cf2e4e93ffa05e3ad29dda79b89 (patch) | |
tree | 8517330e926667004bc8d4854da78ff3caec7a37 /include/gpg/GpgContext.h | |
parent | Add dependent files under Windows. (diff) | |
download | GpgFrontend-7377178bc7214cf2e4e93ffa05e3ad29dda79b89.tar.gz GpgFrontend-7377178bc7214cf2e4e93ffa05e3ad29dda79b89.zip |
Improve project documents
Continue to write ReadME
Eliminate compile-time warnings
Fix some problems
Diffstat (limited to 'include/gpg/GpgContext.h')
-rw-r--r-- | include/gpg/GpgContext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/gpg/GpgContext.h b/include/gpg/GpgContext.h index fb2762f3..eed7afe2 100644 --- a/include/gpg/GpgContext.h +++ b/include/gpg/GpgContext.h @@ -31,7 +31,7 @@ #include "GpgGenKeyInfo.h" #include "GpgKey.h" -using GpgKeyList = QLinkedList<GpgKey>; +using GpgKeyList = std::list<GpgKey>; class GpgImportedKey { public: @@ -39,7 +39,7 @@ public: int importStatus; }; -typedef QLinkedList<GpgImportedKey> GpgImportedKeyList; +typedef std::list<GpgImportedKey> GpgImportedKeyList; class GpgImportInformation { public: |