diff options
author | Michael Natterer <mitch@gimp.org> | 2010-10-31 18:07:20 +0100 |
---|---|---|
committer | Michael Natterer <mitch@gimp.org> | 2010-10-31 19:22:28 +0100 |
commit | 3a0afce5091978b51b75153dc9b910c2a251bc2c (patch) | |
tree | d4da7c96f1db5967d4a3c932c6c140aacce0947a /tests/testtooltips.c | |
parent | 81d7dd07742d20bd5a03c8244c2c5b3e94be9f68 (diff) | |
download | gtk+-3a0afce5091978b51b75153dc9b910c2a251bc2c.tar.gz |
gtk: remove "gboolean homogeneous" from gtk_box_new()
Because it's FALSE in virtually all use cases.
Diffstat (limited to 'tests/testtooltips.c')
-rw-r--r-- | tests/testtooltips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testtooltips.c b/tests/testtooltips.c index 5ec25abfcd..9cb1fcc055 100644 --- a/tests/testtooltips.c +++ b/tests/testtooltips.c @@ -275,7 +275,7 @@ main (int argc, char *argv[]) g_signal_connect (window, "delete_event", G_CALLBACK (gtk_main_quit), NULL); - box = gtk_box_new (GTK_ORIENTATION_VERTICAL, FALSE, 3); + box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 3); gtk_container_add (GTK_CONTAINER (window), box); /* A check button using the tooltip-markup property */ |