From a9894d4cf48e04dcb89043b425be07870ad7c496 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Jard=C3=B3n?= Date: Sat, 30 Oct 2010 05:00:32 +0200 Subject: Use gtk_box_new() instead gtk_[v|h]box_new() --- tests/testwindows.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/testwindows.c') diff --git a/tests/testwindows.c b/tests/testwindows.c index 653370bb11..09e2960751 100644 --- a/tests/testwindows.c +++ b/tests/testwindows.c @@ -798,7 +798,7 @@ main (int argc, char **argv) g_signal_connect (G_OBJECT (window), "delete-event", gtk_main_quit, NULL); - hbox = gtk_hbox_new (FALSE, 5); + hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, FALSE, 5); gtk_container_add (GTK_CONTAINER (window), hbox); gtk_widget_show (hbox); @@ -825,7 +825,7 @@ main (int argc, char **argv) &black); - vbox = gtk_vbox_new (FALSE, 5); + vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, FALSE, 5); gtk_box_pack_start (GTK_BOX (hbox), vbox, FALSE, FALSE, -- cgit v1.2.1