- m_err = PMSessionGetGraphicsContext(native->m_macPrintSession,
- nil,
- (void**) &dc->m_macPort );
+#if wxMAC_USE_CORE_GRAPHICS
+ m_err = PMSessionGetGraphicsContext(native->m_macPrintSession,
+ kPMGraphicsContextCoreGraphics,
+ (void**) &pageContext );
+ dc->MacSetCGContext(pageContext) ;
+#else
+ m_err = PMSessionGetGraphicsContext(native->m_macPrintSession,
+ kPMGraphicsContextQuickdraw,
+ (void**) &dc->m_macPort );
+#endif