diff options
author | Saturneric <[email protected]> | 2022-05-19 18:41:21 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-05-19 18:41:21 +0000 |
commit | 6c884e583326b08aa7e354b47c18cdedaf9308f6 (patch) | |
tree | 4d3a198d9c13aca7693fe12571d961f1ba25b753 /src/ui/GpgFrontendUIInit.h | |
parent | fix: solve user manual navbar.md link to downloads (diff) | |
download | GpgFrontend-6c884e583326b08aa7e354b47c18cdedaf9308f6.tar.gz GpgFrontend-6c884e583326b08aa7e354b47c18cdedaf9308f6.zip |
perf: improve initialized and recover process
1. init logging system
2. init ui
3. init main
Diffstat (limited to '')
-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 |