if ( !m_err )
{
#if wxMAC_USE_CORE_GRAPHICS
- CGContextTranslateCTM( pageContext , 0 , rPage.bottom - rPage.top ) ;
+ PMRect paperRect ;
+ PMGetAdjustedPaperRect( native->m_macPageFormat , &paperRect ) ;
+ CGContextTranslateCTM( pageContext , -paperRect.left , -paperRect.top + ( rPage.bottom - rPage.top ) ) ;
CGContextScaleCTM( pageContext , 1 , -1 ) ;
+ CGContextSaveGState( pageContext ) ;
#else
dc->m_macLocalOrigin.x = (int) rPage.left;
dc->m_macLocalOrigin.y = (int) rPage.top;
wxPrinterDC::~wxPrinterDC(void)
{
+#if wxMAC_USE_CORE_GRAPHICS
+ // this context was borrowed
+ ((wxMacCGContext*)(m_graphicContext))->SetNativeContext( NULL ) ;
+#endif
delete m_nativePrinterDC ;
}