diff options
author | Saturneric <[email protected]> | 2023-02-07 07:16:45 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2023-02-07 07:16:45 +0000 |
commit | a49c6605244d656d4a4b72e95fbbcbe83372d363 (patch) | |
tree | ba28d451a0c78041f36e0e8be7ca30114ddce4ef /src/core/thread/TaskRunner.cpp | |
parent | feat: add a custom pinentry hook for sandbox mode in macOS (diff) | |
download | GpgFrontend-a49c6605244d656d4a4b72e95fbbcbe83372d363.tar.gz GpgFrontend-a49c6605244d656d4a4b72e95fbbcbe83372d363.zip |
feat: use custom password dialog now
Diffstat (limited to 'src/core/thread/TaskRunner.cpp')
-rw-r--r-- | src/core/thread/TaskRunner.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/thread/TaskRunner.cpp b/src/core/thread/TaskRunner.cpp index 7be38f76..c4296852 100644 --- a/src/core/thread/TaskRunner.cpp +++ b/src/core/thread/TaskRunner.cpp @@ -58,6 +58,12 @@ void GpgFrontend::Thread::TaskRunner::PostTask(Task* task) { quit(); } +void GpgFrontend::Thread::TaskRunner::PostScheduleTask(Task* task, + size_t seconds) { + if (task == nullptr) return; + // TODO +} + [[noreturn]] void GpgFrontend::Thread::TaskRunner::run() { SPDLOG_TRACE("called, thread id: {}", QThread::currentThreadId()); while (true) { |