gtk: remove "gboolean homogeneous" from gtk_box_new()

Because it's FALSE in virtually all use cases.
This commit is contained in:
Michael Natterer
2010-10-31 18:07:20 +01:00
committed by Tristan Van Berkom
parent c50f790417
commit 260ccdfebe
116 changed files with 473 additions and 461 deletions

View File

@ -109,7 +109,8 @@ main (int argc, char *argv[])
primary_monitor);
gtk_label_set_markup (GTK_LABEL (label), str);
g_free (str);
vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, TRUE, 1);
vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 1);
gtk_box_set_homogeneous (GTK_BOX (vbox), TRUE);
gtk_container_add (GTK_CONTAINER (window), vbox);
gtk_container_add (GTK_CONTAINER (vbox), label);
button = gtk_button_new_with_label ("Query current monitor");