diff options
author | saturneric <[email protected]> | 2023-12-03 20:25:21 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2023-12-03 20:25:21 +0000 |
commit | 054e6e28cca2517dda2319ef683314b3318c39a6 (patch) | |
tree | ae9ff4a9fe280f3640ca249bad45ab250cfd1610 /src/core/thread/CtxCheckTask.cpp | |
parent | fix: slove issues in key/subkey generation (diff) | |
download | GpgFrontend-054e6e28cca2517dda2319ef683314b3318c39a6.tar.gz GpgFrontend-054e6e28cca2517dda2319ef683314b3318c39a6.zip |
feat: standarized and speed up app env loading process
Diffstat (limited to 'src/core/thread/CtxCheckTask.cpp')
-rw-r--r-- | src/core/thread/CtxCheckTask.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/thread/CtxCheckTask.cpp b/src/core/thread/CtxCheckTask.cpp index 3c24ca79..88e60f79 100644 --- a/src/core/thread/CtxCheckTask.cpp +++ b/src/core/thread/CtxCheckTask.cpp @@ -37,9 +37,9 @@ namespace GpgFrontend { Thread::CoreInitTask::CoreInitTask() : Task("ctx_check_task") { - connect(this, &CoreInitTask::SignalGnupgNotInstall, + connect(this, &CoreInitTask::SignalBadGnupgEnv, CoreSignalStation::GetInstance(), - &CoreSignalStation::SignalGnupgNotInstall); + &CoreSignalStation::SignalBadGnupgEnv); } void Thread::CoreInitTask::Run() { @@ -48,7 +48,7 @@ void Thread::CoreInitTask::Run() { // Create & Check Gnupg Context Status if (!GpgContext::GetInstance().Good()) { - emit SignalGnupgNotInstall(); + emit SignalBadGnupgEnv(); } // Try flushing key cache else { |