From: Julian Smart Date: Sat, 3 May 2003 15:11:55 +0000 (+0000) Subject: Applied patch [ 731846 ] GTK Print Options X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/cb27bab1e626a4314fa55355e549ec8dfa3b8c56 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 --- 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 );