diff options
author | Saturneric <[email protected]> | 2023-02-17 19:08:53 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2023-02-17 19:08:53 +0000 |
commit | da1004ab71c382bde8af2b584e693426227abe0e (patch) | |
tree | a0166f4a5404f5b0d6944cc4a7cffecd3e2eaf86 /src/core/thread/CtxCheckTask.cpp | |
parent | fix: solve command executor memory problem (diff) | |
download | GpgFrontend-da1004ab71c382bde8af2b584e693426227abe0e.tar.gz GpgFrontend-da1004ab71c382bde8af2b584e693426227abe0e.zip |
feat: improve task execute system
Diffstat (limited to 'src/core/thread/CtxCheckTask.cpp')
-rw-r--r-- | src/core/thread/CtxCheckTask.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/thread/CtxCheckTask.cpp b/src/core/thread/CtxCheckTask.cpp index 997dd341..eef05b1b 100644 --- a/src/core/thread/CtxCheckTask.cpp +++ b/src/core/thread/CtxCheckTask.cpp @@ -30,8 +30,9 @@ #include "core/GpgCoreInit.h" #include "core/common/CoreCommonUtil.h" #include "core/function/gpg/GpgKeyGetter.h" +#include "thread/Task.h" -GpgFrontend::Thread::CtxCheckTask::CtxCheckTask() { +GpgFrontend::Thread::CtxCheckTask::CtxCheckTask() : Task("ctx_check_task") { connect(this, &CtxCheckTask::SignalGnupgNotInstall, CoreCommonUtil::GetInstance(), &CoreCommonUtil::SignalGnupgNotInstall); |