something that allowed this to compile with 2.9 wxWidgets
This commit is contained in:
parent
6e6134ea5a
commit
7258d23b81
|
@ -467,7 +467,7 @@ void DIALOG_PRINT_USING_PRINTER::OnPrintButtonClick( wxCommandEvent& event )
|
||||||
wxString title = _( "Print" );
|
wxString title = _( "Print" );
|
||||||
EDA_Printout printout( this, m_Parent, title, s_Print_Sheet_Ref );
|
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();
|
wxDC* dc = printout.GetDC();
|
||||||
( (wxPostScriptDC*) dc )->SetResolution( 600 ); // Postscript DC resolution is 600 ppi
|
( (wxPostScriptDC*) dc )->SetResolution( 600 ); // Postscript DC resolution is 600 ppi
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue