From c92b7d4224b9cef1d08373fcc28f7fbd96c64e6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timm=20B=C3=A4der?= Date: Fri, 21 Apr 2017 22:34:36 +0200 Subject: box: Remove fill child property GtkWidget:halign and GtkWidget:valign are sufficient --- tests/testselection.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/testselection.c') diff --git a/tests/testselection.c b/tests/testselection.c index e0aa482389..e6d029ac94 100644 --- a/tests/testselection.c +++ b/tests/testselection.c @@ -418,7 +418,7 @@ main (int argc, char *argv[]) vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 2); - gtk_box_pack_start (GTK_BOX (content_area), vbox, TRUE); + gtk_box_pack_start (GTK_BOX (content_area), vbox); gtk_widget_show (vbox); selection_button = gtk_toggle_button_new_with_label ("Claim Selection"); @@ -449,12 +449,12 @@ main (int argc, char *argv[]) gtk_widget_show (hbox); label = gtk_label_new ("Target:"); - gtk_box_pack_start (GTK_BOX(hbox), label, FALSE); + gtk_box_pack_start (GTK_BOX(hbox), label); gtk_widget_show (label); entry = gtk_entry_new (); gtk_widget_set_hexpand (entry, TRUE); - gtk_box_pack_start (GTK_BOX(hbox), entry, TRUE); + gtk_box_pack_start (GTK_BOX(hbox), entry); gtk_widget_show (entry); /* .. And create some buttons */ -- cgit v1.2.1