summaryrefslogtreecommitdiff
path: root/tests/testscale.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testscale.c')
-rw-r--r--tests/testscale.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testscale.c b/tests/testscale.c
index a74613c831..f33c22c62d 100644
--- a/tests/testscale.c
+++ b/tests/testscale.c
@@ -219,13 +219,13 @@ int main (int argc, char *argv[])
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), TRUE);
g_signal_connect (button, "toggled", G_CALLBACK (trough), NULL);
gtk_container_add (GTK_CONTAINER (box2), button);
- gtk_widget_show_all (window);
+ gtk_widget_show (window);
button = gtk_toggle_button_new_with_label ("Extra");
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), FALSE);
g_signal_connect (button, "toggled", G_CALLBACK (extra), NULL);
gtk_container_add (GTK_CONTAINER (box2), button);
- gtk_widget_show_all (window);
+ gtk_widget_show (window);
gtk_main ();