diff options
author | saturneric <[email protected]> | 2024-11-21 21:51:22 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-11-21 21:51:22 +0000 |
commit | 8d7f0577e2d6ebf952e0efbcde8633ed8704784d (patch) | |
tree | 1cecc651b85581b671d195567e9773f7ffd2a70a /src/GpgFrontendContext.cpp | |
parent | fix: solve nightly build issues (diff) | |
download | GpgFrontend-8d7f0577e2d6ebf952e0efbcde8633ed8704784d.tar.gz GpgFrontend-8d7f0577e2d6ebf952e0efbcde8633ed8704784d.zip |
feat: distinguish between develop, unstable and release versions
Diffstat (limited to 'src/GpgFrontendContext.cpp')
-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_; } |