summaryrefslogtreecommitdiff
path: root/tests/testbbox.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testbbox.c')
-rw-r--r--tests/testbbox.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testbbox.c b/tests/testbbox.c
index 404836e865..39a61f03b2 100644
--- a/tests/testbbox.c
+++ b/tests/testbbox.c
@@ -132,7 +132,7 @@ main (int argc,
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
g_signal_connect (G_OBJECT (window), "delete-event", G_CALLBACK (gtk_main_quit), NULL);
- vbox = gtk_vbox_new (FALSE, 0);
+ vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, FALSE, 0);
gtk_container_add (GTK_CONTAINER (window), vbox);
/* GtkHButtonBox */
@@ -153,7 +153,7 @@ main (int argc,
/* Options */
- hbox = gtk_hbox_new (FALSE, 0);
+ hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, FALSE, 0);
gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0);
combo_types = gtk_combo_box_text_new ();