summaryrefslogtreecommitdiff
path: root/tests/testselection.c
diff options
context:
space:
mode:
authorMichael Natterer <mitch@gimp.org>2010-10-31 18:07:20 +0100
committerMichael Natterer <mitch@gimp.org>2010-10-31 19:22:28 +0100
commit3a0afce5091978b51b75153dc9b910c2a251bc2c (patch)
treed4da7c96f1db5967d4a3c932c6c140aacce0947a /tests/testselection.c
parent81d7dd07742d20bd5a03c8244c2c5b3e94be9f68 (diff)
downloadgtk+-3a0afce5091978b51b75153dc9b910c2a251bc2c.tar.gz
gtk: remove "gboolean homogeneous" from gtk_box_new()
Because it's FALSE in virtually all use cases.
Diffstat (limited to 'tests/testselection.c')
-rw-r--r--tests/testselection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testselection.c b/tests/testselection.c
index dfe2ed118d..b6b79d3a2f 100644
--- a/tests/testselection.c
+++ b/tests/testselection.c
@@ -442,7 +442,7 @@ main (int argc, char *argv[])
gtk_table_attach_defaults (GTK_TABLE (table), scrolled, 0, 1, 1, 2);
gtk_widget_show (selection_text);
- hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, FALSE, 2);
+ hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 2);
gtk_table_attach (GTK_TABLE (table), hbox, 0, 2, 3, 4,
GTK_EXPAND | GTK_FILL, 0, 0, 0);
gtk_widget_show (hbox);