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/testassistant.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/testassistant.c')
-rw-r--r-- | tests/testassistant.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/testassistant.c b/tests/testassistant.c index e936d02877..a6b4ef5e67 100644 --- a/tests/testassistant.c +++ b/tests/testassistant.c @@ -60,7 +60,7 @@ add_completion_test_page (GtkWidget *assistant, GtkWidget *check; PageData *pdata; - page = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0, FALSE); + page = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); check = gtk_check_button_new_with_label ("Complete"); gtk_container_add (GTK_CONTAINER (page), gtk_label_new (text)); @@ -337,7 +337,7 @@ create_nonlinear_assistant (GtkWidget *widget) nonlinear_assistant_forward_page, NULL, NULL); - page = gtk_box_new (GTK_ORIENTATION_VERTICAL, FALSE, 6); + page = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); button = gtk_radio_button_new_with_label (NULL, "branch A"); gtk_box_pack_start (GTK_BOX (page), button, FALSE, FALSE, 0); @@ -574,7 +574,7 @@ main (int argc, gchar *argv[]) g_signal_connect (G_OBJECT (window), "delete-event", G_CALLBACK (gtk_false), NULL); - box = gtk_box_new (GTK_ORIENTATION_VERTICAL, FALSE, 6); + box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); gtk_container_add (GTK_CONTAINER (window), box); for (i = 0; i < G_N_ELEMENTS (buttons); i++) |