diff options
Diffstat (limited to '')
-rw-r--r-- | src/GpgFrontendContext.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/GpgFrontendContext.cpp b/src/GpgFrontendContext.cpp index 852dbaa0..e08d0f6e 100644 --- a/src/GpgFrontendContext.cpp +++ b/src/GpgFrontendContext.cpp @@ -34,11 +34,12 @@ #include <qthread.h> #include "core/utils/MemoryUtils.h" +#include "ui/GpgFrontendApplication.h" namespace GpgFrontend { void GpgFrontendContext::InitApplication() { - app_ = SecureCreateObject<QApplication>(argc, argv); + app_ = SecureCreateObject<UI::GpgFrontendApplication>(argc, argv); } auto GpgFrontendContext::GetApp() -> QApplication* { return app_; } |