From cb27bab1e626a4314fa55355e549ec8dfa3b8c56 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Sat, 3 May 2003 15:11:55 +0000 Subject: [PATCH] Applied patch [ 731846 ] GTK Print Options Print options were omitted from print command git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20455 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/dcpsg.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/generic/dcpsg.cpp b/src/generic/dcpsg.cpp index f53091ad05..4fa2f1d944 100644 --- a/src/generic/dcpsg.cpp +++ b/src/generic/dcpsg.cpp @@ -1881,6 +1881,8 @@ void wxPostScriptDC::EndDoc () wxString command; command += m_printData.GetPrinterCommand(); command += wxT(" "); + command += m_printData.GetPrinterOptions(); + command += wxT(" "); command += m_printData.GetFilename(); wxExecute( command, TRUE ); -- 2.45.2