From c7e25919c6d9e5434192123265041dbb70a88314 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/branches/WX_2_4_BRANCH@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 36e8e4c748..cb90bcb26d 100644 --- a/src/generic/dcpsg.cpp +++ b/src/generic/dcpsg.cpp @@ -1886,6 +1886,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 );