diff options
author | Michael Natterer <mitch@gimp.org> | 2010-10-31 18:07:20 +0100 |
---|---|---|
committer | Tristan Van Berkom <tristan.van.berkom@gmail.com> | 2010-11-02 12:04:35 +0900 |
commit | 260ccdfebef9e17842dcc162aefba46fe5459c7c (patch) | |
tree | 52e18d59f343ae23c75a7cf186009b27237a11c3 /tests/testorientable.c | |
parent | c50f79041776098cecc4b65bbe4305173dff0847 (diff) | |
download | gtk+-260ccdfebef9e17842dcc162aefba46fe5459c7c.tar.gz |
gtk: remove "gboolean homogeneous" from gtk_box_new()
Because it's FALSE in virtually all use cases.
Diffstat (limited to 'tests/testorientable.c')
-rw-r--r-- | tests/testorientable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testorientable.c b/tests/testorientable.c index 11e2ef59b5..b3fa0e2d56 100644 --- a/tests/testorientable.c +++ b/tests/testorientable.c @@ -61,7 +61,7 @@ main (int argc, char **argv) gtk_table_set_col_spacings (GTK_TABLE (table), 12); /* GtkBox */ - box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6, FALSE); + box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); orientables = g_list_prepend (orientables, box); gtk_table_attach_defaults (GTK_TABLE (table), box, 0, 1, 1, 2); gtk_box_pack_start (GTK_BOX (box), |