From 6537f7dad8a10c74d316102d01ac9cc8c500453a Mon Sep 17 00:00:00 2001 From: Daniel Boles Date: Tue, 22 Aug 2017 14:14:53 +0100 Subject: [PATCH] getting_started: Sync filenames & section headings The order of Examples 3 and 4 was swapped, so the headings updated themselves, but the filenames were left reflecting the old order. https://bugzilla.gnome.org/show_bug.cgi?id=786553 --- docs/reference/gtk/getting_started.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/reference/gtk/getting_started.xml b/docs/reference/gtk/getting_started.xml index c6bfe27081..dd4395fddc 100644 --- a/docs/reference/gtk/getting_started.xml +++ b/docs/reference/gtk/getting_started.xml @@ -256,7 +256,7 @@ Packing buttons with GtkBuilder - Create a new file with the following content named example-4.c. + Create a new file with the following content named example-3.c. MISSING XINCLUDE CONTENT Create a new file with the following content named builder.ui. MISSING XINCLUDE CONTENT @@ -264,7 +264,7 @@ You can compile the program above with GCC using: - gcc `pkg-config --cflags gtk+-3.0` -o example-4 example-4.c `pkg-config --libs gtk+-3.0` + gcc `pkg-config --cflags gtk+-3.0` -o example-3 example-3.c `pkg-config --libs gtk+-3.0` @@ -1072,13 +1072,13 @@ example_app_window_init (ExampleAppWindow *win) Drawing in response to input - Create a new file with the following content named example-3.c. + Create a new file with the following content named example-4.c. MISSING XINCLUDE CONTENT You can compile the program above with GCC using: - gcc `pkg-config --cflags gtk+-3.0` -o example-3 example-3.c `pkg-config --libs gtk+-3.0` + gcc `pkg-config --cflags gtk+-3.0` -o example-4 example-4.c `pkg-config --libs gtk+-3.0`