diff options
Diffstat (limited to 'tests/print-editor.c')
-rw-r--r-- | tests/print-editor.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/print-editor.c b/tests/print-editor.c index c111b2d1b5..f64117389d 100644 --- a/tests/print-editor.c +++ b/tests/print-editor.c @@ -321,15 +321,15 @@ create_custom_widget (GtkPrintOperation *operation, vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 8); - gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE); + gtk_box_pack_start (GTK_BOX (vbox), hbox); gtk_widget_show (hbox); label = gtk_label_new ("Font:"); - gtk_box_pack_start (GTK_BOX (hbox), label, FALSE); + gtk_box_pack_start (GTK_BOX (hbox), label); gtk_widget_show (label); font = gtk_font_button_new_with_font (data->font); - gtk_box_pack_start (GTK_BOX (hbox), font, FALSE); + gtk_box_pack_start (GTK_BOX (hbox), font); gtk_widget_show (font); data->font_button = font; |