diff options
Diffstat (limited to 'src/core/thread/Task.h')
-rw-r--r-- | src/core/thread/Task.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/thread/Task.h b/src/core/thread/Task.h index da74005f..8f157917 100644 --- a/src/core/thread/Task.h +++ b/src/core/thread/Task.h @@ -29,6 +29,7 @@ #pragma once #include "core/GpgFrontendCore.h" +#include "core/function/SecureMemoryAllocator.h" #include "core/model/DataObject.h" namespace GpgFrontend::Thread { @@ -90,7 +91,7 @@ class GPGFRONTEND_CORE_EXPORT Task : public QObject, public QRunnable { private: class Impl; - Impl* p_; + SecureUniquePtr<Impl> p_; void run() override; }; |