diff options
author | William Jon McCann <william.jon.mccann@gmail.com> | 2013-07-17 09:36:00 -0400 |
---|---|---|
committer | William Jon McCann <william.jon.mccann@gmail.com> | 2013-07-17 09:59:12 -0400 |
commit | 8e3f8d87209cad89998d2e256058961374f5e2e7 (patch) | |
tree | c34137696af995e2f70f209d9759a87f9d67b658 /examples/window-default.c | |
parent | c8d4d24425aaf4ad8fc020c1975ea146402bf516 (diff) | |
download | gtk+-8e3f8d87209cad89998d2e256058961374f5e2e7.tar.gz |
docs: update getting started screenshots
Diffstat (limited to 'examples/window-default.c')
-rw-r--r-- | examples/window-default.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/window-default.c b/examples/window-default.c index 79888def97..4b7a22f785 100644 --- a/examples/window-default.c +++ b/examples/window-default.c @@ -9,6 +9,7 @@ main (int argc, gtk_init (&argc, &argv); window = gtk_window_new (GTK_WINDOW_TOPLEVEL); + gtk_window_set_title (GTK_WINDOW (window), "Window"); g_signal_connect (window, "destroy", G_CALLBACK (gtk_main_quit), NULL); |