summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandy5995 <arch_stanton5995@protonmail.com>2022-12-11 03:18:53 -0600
committerandy5995 <arch_stanton5995@protonmail.com>2022-12-12 23:40:07 -0600
commit99d6eb9cb4f992ab2be0dfad5965cce404bcee71 (patch)
tree8e575a183098d2aa915a34df53051fd030bffa36
parent6bed0cfb5a819a09c1e3de1a3d25aec887524625 (diff)
downloadgtk+-99d6eb9cb4f992ab2be0dfad5965cce404bcee71.tar.gz
docs: Emphasize requirement to give filenames as arguments
(related to #5430)
-rw-r--r--docs/reference/gtk/getting_started.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/reference/gtk/getting_started.md b/docs/reference/gtk/getting_started.md
index 079dec4068..03660763f1 100644
--- a/docs/reference/gtk/getting_started.md
+++ b/docs/reference/gtk/getting_started.md
@@ -1018,6 +1018,10 @@ Our application now looks like this:
In this step, we make our application show the content of all the files
that it is given on the commandline.
+**Note: Providing filenames (e.g. `./exampleapp examplewin.c examplewin.h`) at
+the command line is a requirement for example apps 3-9 to display as shown in
+the screenshots below.**
+
To this end, we add a member to the struct of our application window subclass
and keep a reference to the `GtkStack` there. The first member of the struct
should be the parent type from which the class is derived. Here,