summaryrefslogtreecommitdiff
path: root/tests/testexpand.c
diff options
context:
space:
mode:
authorTimm Bäder <mail@baedert.org>2017-01-19 10:02:04 +0100
committerTimm Bäder <mail@baedert.org>2017-01-20 21:37:04 +0100
commitea897c6df44c37f573b7ed8e81ad87a9fd5b1009 (patch)
tree02726659b57530b21a5e1f8625ddd6f381bb8824 /tests/testexpand.c
parent13b001b77ca3907b4ff1246208755478421a7b32 (diff)
downloadgtk+-ea897c6df44c37f573b7ed8e81ad87a9fd5b1009.tar.gz
Remove gtk_widget_show_all
Diffstat (limited to 'tests/testexpand.c')
-rw-r--r--tests/testexpand.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testexpand.c b/tests/testexpand.c
index 750020bde1..88483d28c6 100644
--- a/tests/testexpand.c
+++ b/tests/testexpand.c
@@ -104,7 +104,7 @@ create_box_window (void)
gtk_box_pack_start (GTK_BOX (box3), colorbox, FALSE, TRUE);
gtk_container_add (GTK_CONTAINER (window), box1);
- gtk_widget_show_all (window);
+ gtk_widget_show (window);
}
static void
@@ -150,7 +150,7 @@ create_grid_window (void)
gtk_grid_attach (GTK_GRID (grid), colorbox, 1, 2, 1, 1);
gtk_container_add (GTK_CONTAINER (window), grid);
- gtk_widget_show_all (window);
+ gtk_widget_show (window);
}
int