]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/dcprint.h
reverted my Set/getTitle change
[wxWidgets.git] / include / wx / mac / dcprint.h
index e2e11819a37fde60218af3a8b53973c809a7fee0..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();
@@ -34,11 +35,16 @@ class WXDLLEXPORT wxPrinterDC: public wxDC
     virtual void EndPage(void) ;
  protected :
  #if TARGET_CARBON
-       PMPrintContext  m_macPrintPort ;
+    #if PM_USE_SESSION_APIS
+      PMPrintSession  m_macPrintSession;
+    #else
+      PMPrintContext  m_macPrintPort ;
+    #endif
  #else
-       TPPrPort        m_macPrintPort ;
+      TPPrPort         m_macPrintPort ;
  #endif
-       wxPrintData m_printData ;
+      wxPrintData m_printData ;
+#endif // wxUSE_PRINTING_ARCHITECTURE
 };
 
 #endif