diff options
author | saturneric <[email protected]> | 2025-04-17 19:59:01 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-04-17 19:59:01 +0000 |
commit | 92be7f8da6076311b996a184c76781c07608cc9f (patch) | |
tree | 1088b3f5ad7c086e7f462287c14624e2202adbf0 /src/ui/thread/KeyServerImportTask.cpp | |
parent | feat: check scd version (diff) | |
download | GpgFrontend-92be7f8da6076311b996a184c76781c07608cc9f.tar.gz GpgFrontend-92be7f8da6076311b996a184c76781c07608cc9f.zip |
fix: issues found on linux platform
Diffstat (limited to '')
-rw-r--r-- | src/ui/thread/KeyServerImportTask.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/thread/KeyServerImportTask.cpp b/src/ui/thread/KeyServerImportTask.cpp index d6450e83..f977fe62 100644 --- a/src/ui/thread/KeyServerImportTask.cpp +++ b/src/ui/thread/KeyServerImportTask.cpp @@ -96,7 +96,7 @@ void GpgFrontend::UI::KeyServerImportTask::dealing_reply_from_server() { emit SignalKeyServerImportResult(current_gpg_context_channel_, true, tr("Success"), buffer, info); - if (static_cast<size_t>(result_count_++) == keyids_.size() - 1) { + if (static_cast<qsizetype>(result_count_++) == keyids_.size() - 1) { emit SignalTaskShouldEnd(0); } }
\ No newline at end of file |