summaryrefslogtreecommitdiff
path: root/tests/testscrolledwindow.c
diff options
context:
space:
mode:
authorMichael Natterer <mitch@gimp.org>2010-10-31 20:00:38 +0100
committerTristan Van Berkom <tristan.van.berkom@gmail.com>2010-11-02 12:04:35 +0900
commit8979855f60a92a1b612fbdd168c61122f96a3e81 (patch)
tree98cd40884c0b9e29588b5cddf11438b863805d4e /tests/testscrolledwindow.c
parentc70f3e26d22f8e6149930183fcd4398df7747444 (diff)
downloadgtk+-8979855f60a92a1b612fbdd168c61122f96a3e81.tar.gz
tests: missed these two gtk_box_new() which sneaked in by rebasing...
Diffstat (limited to 'tests/testscrolledwindow.c')
-rw-r--r--tests/testscrolledwindow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testscrolledwindow.c b/tests/testscrolledwindow.c
index 0c9927971e..97177f9952 100644
--- a/tests/testscrolledwindow.c
+++ b/tests/testscrolledwindow.c
@@ -149,7 +149,7 @@ scrollable_policy (void)
G_CALLBACK (vertical_policy_changed), viewport);
/* Content size controls */
- hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, FALSE, 2);
+ hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 2);
widget = gtk_label_new ("min-content-width");
gtk_widget_show (widget);
@@ -164,7 +164,7 @@ scrollable_policy (void)
g_signal_connect (G_OBJECT (widget), "value-changed",
G_CALLBACK (content_width_changed), swindow);
- hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, FALSE, 2);
+ hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 2);
widget = gtk_label_new ("min-content-height");
gtk_widget_show (widget);