diff options
author | 2023-01-03 18:19:02 +0100 | |
---|---|---|
committer | 2023-01-03 18:19:02 +0100 | |
commit | 20b3269dbd53ab8a8f73219ba8fe853503999d49 (patch) | |
tree | a31866ef938885411f281ddd9b8b1c378b927914 | |
parent | 95e7b5c6e744b569fc0c66ebcfa891da81a7824f (diff) | |
download | qureje-20b3269dbd53ab8a8f73219ba8fe853503999d49.tar.gz qureje-20b3269dbd53ab8a8f73219ba8fe853503999d49.zip |
Set the app reference in QurejeApplication instance
-rw-r--r-- | ui/window.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/window.c b/ui/window.c index 971cac3..06990d5 100644 --- a/ui/window.c +++ b/ui/window.c @@ -56,6 +56,7 @@ qureje_window_main(QurejeApplication *qapp, int argc, char **argv) GtkApplication *app; app = gtk_application_new("it.alessandroiezzi.qureje", G_APPLICATION_FLAGS_NONE); + QAPP(qapp) = app; g_signal_connect(app, "activate", G_CALLBACK(activate), qapp); qapp->status = g_application_run (G_APPLICATION (app), argc, argv); |