diff options
Diffstat (limited to 'src/ui/thread/CtxCheckThread.cpp')
-rw-r--r-- | src/ui/thread/CtxCheckThread.cpp | 4 |
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 |