From 85c23b189d1c83d7c84774b4ecc09334316ca143 Mon Sep 17 00:00:00 2001 From: Juerg Billeter Date: Mon, 9 May 2005 21:27:17 +0000 Subject: [PATCH] LPD printers use postscript, too 2005-05-09 Juerg Billeter * shell/ev-window.c: (using_postscript_printer): LPD printers use postscript, too --- ChangeLog | 6 ++++++ shell/ev-window.c | 2 ++ 2 files changed, 8 insertions(+) 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; -- 2.43.5