]> www.fi.muni.cz Git - evince.git/commitdiff
libview: Use new combo box text APIs
authorMatthias Clasen <mclasen@redhat.com>
Sun, 24 Oct 2010 19:08:45 +0000 (21:08 +0200)
committerCarlos Garcia Campos <carlosgc@gnome.org>
Sun, 7 Nov 2010 09:26:09 +0000 (10:26 +0100)
libview/ev-print-operation.c

index d14c9e7b5c8c9514f6054ff9470bcae7fef81bd9..04e327d0327df57bc6bec72dbfa8327d1612773c 100644 (file)
@@ -1861,10 +1861,10 @@ ev_print_operation_print_create_custom_widget (EvPrintOperationPrint *print,
        gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1, GTK_FILL, 0, 0, 0);
        gtk_widget_show (label);
 
-       print->scale_combo = gtk_combo_box_new_text ();
-       gtk_combo_box_append_text (GTK_COMBO_BOX (print->scale_combo), _("None"));
-       gtk_combo_box_append_text (GTK_COMBO_BOX (print->scale_combo), _("Shrink to Printable Area"));
-       gtk_combo_box_append_text (GTK_COMBO_BOX (print->scale_combo), _("Fit to Printable Area"));
+       print->scale_combo = gtk_combo_box_text_new ();
+       gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (print->scale_combo), _("None"));
+       gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (print->scale_combo), _("Shrink to Printable Area"));
+       gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (print->scale_combo), _("Fit to Printable Area"));
        gtk_combo_box_set_active (GTK_COMBO_BOX (print->scale_combo), page_scale);
        gtk_widget_set_tooltip_text (print->scale_combo,
                _("Scale document pages to fit the selected printer page. Select from one of the following:\n"