From cd10e5dd1ad0d2bc4a13fbcff68f3ce0c8c97107 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Mon, 27 Feb 2023 16:32:35 +0000 Subject: [PATCH] Verbiage Change --- docs/reference/gtk/getting_started.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/reference/gtk/getting_started.md b/docs/reference/gtk/getting_started.md index 483a5dd494..506690a70e 100644 --- a/docs/reference/gtk/getting_started.md +++ b/docs/reference/gtk/getting_started.md @@ -66,8 +66,10 @@ You can compile the program above with GCC using: gcc $( pkg-config --cflags gtk4 ) -o example-0 example-0.c $( pkg-config --libs gtk4 ) ``` -If the above compilation does not work due to an error regarding "G_APPLICATION_DEFAULT_FLAGS" this could be due to a recent change in GLib/GIO. If your distribution is using a slightly older version you will want to replace this with G_APPLICATION_FLAGS_NONE for this example and others in this documentation. - +**Note**: If the above compilation does not work due to an error regarding `G_APPLICATION_DEFAULT_FLAGS` +this could be due to your OS providing an older version of GLib. For GLib versions older than 2.74 you +will need to replace `G_APPLICATION_DEFAULT_FLAGS` with `G_APPLICATION_FLAGS_NONE` in this example, and +others in this documentation. For more information on how to compile a GTK application, please refer to the [Compiling GTK Applications](compiling.html) section in this reference.