diff options
author | Saturn&Eric <[email protected]> | 2022-05-20 19:13:55 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2022-05-20 19:13:55 +0000 |
commit | 306cc5b41af9596875c2999af638eaa35899e404 (patch) | |
tree | 6d8d5b3cdb35e79527d33c63d4e69995f9c3f2df /src/ui/GpgFrontendUIInit.h | |
parent | Merge pull request #65 from saturneric/develop-2.0.8 (diff) | |
parent | fix(ui): there is possible null pointer dereference (diff) | |
download | GpgFrontend-306cc5b41af9596875c2999af638eaa35899e404.tar.gz GpgFrontend-306cc5b41af9596875c2999af638eaa35899e404.zip |
Merge pull request #66 from saturneric/develop-2.0.8
Develop 2.0.8.2
Diffstat (limited to 'src/ui/GpgFrontendUIInit.h')
-rw-r--r-- | src/ui/GpgFrontendUIInit.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/GpgFrontendUIInit.h b/src/ui/GpgFrontendUIInit.h index d7b6390d..9b490c0f 100644 --- a/src/ui/GpgFrontendUIInit.h +++ b/src/ui/GpgFrontendUIInit.h @@ -37,12 +37,12 @@ namespace GpgFrontend::UI { * @brief init the UI library * */ -void GPGFRONTEND_UI_EXPORT InitGpgFrontendUI(); +void GPGFRONTEND_UI_EXPORT InitGpgFrontendUI(QApplication *); /** * @brief run main window */ -int GPGFRONTEND_UI_EXPORT RunGpgFrontendUI(); +int GPGFRONTEND_UI_EXPORT RunGpgFrontendUI(QApplication *); }; // namespace GpgFrontend::UI |