From 3a0afce5091978b51b75153dc9b910c2a251bc2c Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Sun, 31 Oct 2010 18:07:20 +0100 Subject: gtk: remove "gboolean homogeneous" from gtk_box_new() Because it's FALSE in virtually all use cases. --- tests/testexpand.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/testexpand.c') diff --git a/tests/testexpand.c b/tests/testexpand.c index c4a874ddbe..937b8110d7 100644 --- a/tests/testexpand.c +++ b/tests/testexpand.c @@ -63,9 +63,9 @@ create_box_window (void) window = gtk_window_new (GTK_WINDOW_TOPLEVEL); gtk_window_set_title (GTK_WINDOW (window), "Boxes"); - box1 = gtk_box_new (GTK_ORIENTATION_VERTICAL, FALSE, 0); - box2 = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, FALSE, 0); - box3 = gtk_box_new (GTK_ORIENTATION_VERTICAL, FALSE, 0); + box1 = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); + box2 = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0); + box3 = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); gtk_box_pack_start (GTK_BOX (box1), gtk_label_new ("VBox 1 Top"), -- cgit v1.2.1