something that allowed this to compile with 2.9 wxWidgets

This commit is contained in:
dickelbeck 2009-05-02 18:51:43 +00:00
parent 6e6134ea5a
commit 7258d23b81
1 changed files with 1 additions and 1 deletions

View File

@ -467,7 +467,7 @@ void DIALOG_PRINT_USING_PRINTER::OnPrintButtonClick( wxCommandEvent& event )
wxString title = _( "Print" );
EDA_Printout printout( this, m_Parent, title, s_Print_Sheet_Ref );
#ifndef __WINDOWS__
#if !defined(__WINDOWS__) && !wxCHECK_VERSION(2,9,0)
wxDC* dc = printout.GetDC();
( (wxPostScriptDC*) dc )->SetResolution( 600 ); // Postscript DC resolution is 600 ppi
#endif