aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/thread/CtxCheckThread.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/thread/CtxCheckThread.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/thread/CtxCheckThread.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/thread/CtxCheckThread.cpp b/src/ui/thread/CtxCheckThread.cpp
index c0e33a7d..bbcb1503 100644
--- a/src/ui/thread/CtxCheckThread.cpp
+++ b/src/ui/thread/CtxCheckThread.cpp
@@ -32,7 +32,7 @@
#include "ui/UserInterfaceUtils.h"
GpgFrontend::UI::CtxCheckThread::CtxCheckThread() : QThread(nullptr) {
- connect(this, &CtxCheckThread::signalGnupgNotInstall,
+ connect(this, &CtxCheckThread::SignalGnupgNotInstall,
CommonUtils::GetInstance(), &CommonUtils::signalGnupgNotInstall);
}
@@ -42,7 +42,7 @@ void GpgFrontend::UI::CtxCheckThread::run() {
// Create & Check Gnupg Context Status
if (!GpgContext::GetInstance().good()) {
- emit signalGnupgNotInstall();
+ emit SignalGnupgNotInstall();
}
// Try fetching key
else