From: Juerg Billeter Date: Mon, 9 May 2005 21:27:17 +0000 (+0000) Subject: LPD printers use postscript, too X-Git-Tag: EVINCE_0_3_1~49 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=85c23b189d1c83d7c84774b4ecc09334316ca143;p=evince.git LPD printers use postscript, too 2005-05-09 Juerg Billeter * shell/ev-window.c: (using_postscript_printer): LPD printers use postscript, too --- diff --git a/ChangeLog b/ChangeLog index 16a5f1e1..2529d2a2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-05-09 Juerg Billeter + + * shell/ev-window.c: (using_postscript_printer): + + LPD printers use postscript, too + 2005-05-09 Marco Pesenti Gritti * shell/ev-window.c: (register_custom_actions): diff --git a/shell/ev-window.c b/shell/ev-window.c index d9b47401..eeeb97b3 100644 --- a/shell/ev-window.c +++ b/shell/ev-window.c @@ -1022,6 +1022,8 @@ using_postscript_printer (GnomePrintConfig *config) } else if (transport) { if (!strcmp ((const gchar *)transport, "CUPS")) return TRUE; + else if (!strcmp ((const gchar *)transport, "LPD")) + return TRUE; } return FALSE;