diff options
author | saturneric <[email protected]> | 2023-10-15 19:47:52 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2023-10-15 19:47:52 +0000 |
commit | 7c21fdd97132e63572a6aca6fa0492d2ce74e777 (patch) | |
tree | b60d1a9bb98e44fa1c8e0cce8ab6d56592e32706 /src/main.cpp | |
parent | fix: update screenshot of appstream (diff) | |
download | GpgFrontend-7c21fdd97132e63572a6aca6fa0492d2ce74e777.tar.gz GpgFrontend-7c21fdd97132e63572a6aca6fa0492d2ce74e777.zip |
feat: start to add plugin system and do some improve on project configuration
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 37290f4f..42c52bc7 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -132,6 +132,9 @@ int main(int argc, char* argv[]) { int return_from_event_loop_code; int restart_count = 0; + // load integrated plugins + GpgFrontend::Plugin::LoadGpgFrontendIntegratedPlugins(); + do { #ifndef WINDOWS int r = sigsetjmp(recover_env, 1); |