diff options
author | saturneric <[email protected]> | 2024-12-13 15:22:33 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-12-13 15:22:33 +0000 |
commit | f7a00c58d2824f49ecaafc0152fc0b8213772e46 (patch) | |
tree | d012e5fac4ff9f48cd10381a0b79de0294d28d18 /src/ui/thread/KeyServerImportTask.h | |
parent | doc: update SECURITY.md (diff) | |
download | GpgFrontend-f7a00c58d2824f49ecaafc0152fc0b8213772e46.tar.gz GpgFrontend-f7a00c58d2824f49ecaafc0152fc0b8213772e46.zip |
refactor: using qt containers instead of std containers
Diffstat (limited to '')
-rw-r--r-- | src/ui/thread/KeyServerImportTask.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/thread/KeyServerImportTask.h b/src/ui/thread/KeyServerImportTask.h index f5a3fcdb..4e98a43a 100644 --- a/src/ui/thread/KeyServerImportTask.h +++ b/src/ui/thread/KeyServerImportTask.h @@ -32,6 +32,7 @@ #include <qnetworkreply.h> #include "core/thread/Task.h" +#include "core/typedef/GpgTypedef.h" namespace GpgFrontend { class GpgImportInformation; @@ -48,8 +49,7 @@ class KeyServerImportTask : public Thread::Task { * @param keyserver_url * @param search_string */ - KeyServerImportTask(QString keyserver_url, int channel, - std::vector<QString> keyid); + KeyServerImportTask(QString keyserver_url, int channel, KeyIdArgsList keyids); /** * @brief @@ -78,7 +78,7 @@ class KeyServerImportTask : public Thread::Task { private: QString keyserver_url_; ///< int current_gpg_context_channel_; ///< - std::vector<QString> keyids_; ///< + KeyIdArgsList keyids_; ///< int result_count_ = 0; QNetworkAccessManager *manager_; ///< |