aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/settings/SettingsKeyServer.cpp
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2022-01-23 07:36:55 +0000
committerSaturneric <[email protected]>2022-01-23 07:38:54 +0000
commit247b5b8f7ffb5cf7df5d4bc0e4fb786152934569 (patch)
treedaa5b6f39a1a4c07d4fa10a478d159e17059609c /src/ui/settings/SettingsKeyServer.cpp
parent<refactor>(ui): tidy up codes and comments. (diff)
downloadGpgFrontend-247b5b8f7ffb5cf7df5d4bc0e4fb786152934569.tar.gz
GpgFrontend-247b5b8f7ffb5cf7df5d4bc0e4fb786152934569.zip
<refactor>(ui): tidy up codes and comments.
1. tidy up thread.
Diffstat (limited to '')
-rw-r--r--src/ui/settings/SettingsKeyServer.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/settings/SettingsKeyServer.cpp b/src/ui/settings/SettingsKeyServer.cpp
index ca74d3d2..41e749c1 100644
--- a/src/ui/settings/SettingsKeyServer.cpp
+++ b/src/ui/settings/SettingsKeyServer.cpp
@@ -29,7 +29,7 @@
#include "SettingsKeyServer.h"
#include "GlobalSettingStation.h"
-#include "ui/thread/TestListedKeyServerThread.h"
+#include "ui/thread/ListedKeyServerTestThread.h"
#include "ui_KeyServerSettings.h"
namespace GpgFrontend::UI {
@@ -249,10 +249,10 @@ void KeyserverTab::slot_test_listed_key_server() {
urls.push_back(keyserver_url);
}
- auto thread = new TestListedKeyServerThread(urls, timeout, this);
+ auto thread = new ListedKeyServerTestThread(urls, timeout, this);
connect(thread,
- &GpgFrontend::UI::TestListedKeyServerThread::
- signalKeyServerListTestResult,
+ &GpgFrontend::UI::ListedKeyServerTestThread::
+ SignalKeyServerListTestResult,
this, [=](const QStringList& result) {
const auto row_size = ui_->keyServerListTable->rowCount();
if (result.size() != row_size) return;