]> git.saurik.com Git - wxWidgets.git/commitdiff
Applied patch [ 731846 ] GTK Print Options
authorJulian Smart <julian@anthemion.co.uk>
Sat, 3 May 2003 15:11:55 +0000 (15:11 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Sat, 3 May 2003 15:11:55 +0000 (15:11 +0000)
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

index f53091ad05627d24d98c928733fdd25bdaf19470..4fa2f1d944f0434cb50f656bd8e3bc5d3f3c0f0f 100644 (file)
@@ -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 );