]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/dcprint.h
added wx/defs.h include to correct compilation issues under Mac OS X
[wxWidgets.git] / include / wx / mac / dcprint.h
index 07f876fc85d8321c05aec4bc7a45c55b79499d92..b06714920c6be97b881eae41a04cfabb05d2a6b3 100644 (file)
@@ -24,6 +24,7 @@ class WXDLLEXPORT wxPrinterDC: public wxDC
  public:
   DECLARE_CLASS(wxPrinterDC)
 
+#if wxUSE_PRINTING_ARCHITECTURE
   // Create a printer DC
   wxPrinterDC(const wxPrintData& printdata );
   ~wxPrinterDC();
@@ -33,8 +34,17 @@ class WXDLLEXPORT wxPrinterDC: public wxDC
     virtual void StartPage(void) ;
     virtual void EndPage(void) ;
  protected :
-       TPPrPort        m_macPrintPort ;
-       wxPrintData m_printData ;
+ #if TARGET_CARBON
+    #if PM_USE_SESSION_APIS
+      PMPrintSession  m_macPrintSession;
+    #else
+      PMPrintContext  m_macPrintPort ;
+    #endif
+ #else
+      TPPrPort         m_macPrintPort ;
+ #endif
+      wxPrintData m_printData ;
+#endif // wxUSE_PRINTING_ARCHITECTURE
 };
 
 #endif