From d43968f7b6e76097de871698d3f510ec4651a175 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 2 Feb 2023 09:03:26 +0100 Subject: [PATCH] Fix a deprecation warning --- examples/hello/hello-world.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/hello/hello-world.c b/examples/hello/hello-world.c index 3f501dfe64..30edbee7ce 100644 --- a/examples/hello/hello-world.c +++ b/examples/hello/hello-world.c @@ -37,7 +37,7 @@ main (int argc, GtkApplication *app; int status; - app = gtk_application_new ("org.gtk.example", G_APPLICATION_FLAGS_NONE); + app = gtk_application_new ("org.gtk.example", G_APPLICATION_DEFAULT_FLAGS); g_signal_connect (app, "activate", G_CALLBACK (activate), NULL); status = g_application_run (G_APPLICATION (app), argc, argv); g_object_unref (app);