aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorCharlie Ringström <c.ringstrom@gmail.com>2023-08-17 20:47:15 +0200
committerXavier Claessens <xclaesse@gmail.com>2023-08-17 15:33:35 -0400
commitcbf8e67f19e384e5f8eb7f65d3020551769de545 (patch)
tree7d1de41eb3e5fc06c3355de2601dc7444898f779 /docs
parent229757fe912777825f83cf84a12dd75c50831f61 (diff)
downloadmeson-cbf8e67f19e384e5f8eb7f65d3020551769de545.zip
meson-cbf8e67f19e384e5f8eb7f65d3020551769de545.tar.gz
meson-cbf8e67f19e384e5f8eb7f65d3020551769de545.tar.bz2
Replace deprecated GTK flag
Diffstat (limited to 'docs')
-rw-r--r--docs/markdown/Tutorial.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Tutorial.md b/docs/markdown/Tutorial.md
index f43cc36..34e65fc 100644
--- a/docs/markdown/Tutorial.md
+++ b/docs/markdown/Tutorial.md
@@ -141,7 +141,7 @@ int main(int argc, char **argv)
GtkApplication *app;
int status;
- app = gtk_application_new(NULL, G_APPLICATION_FLAGS_NONE);
+ app = gtk_application_new(NULL, 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);