]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cmndata.h
Readd mingw32 support
[wxWidgets.git] / include / wx / cmndata.h
index b8faa2b9a88330fe297690af1cab217ece22ee69..6c2c6864a1360c83d632eafad669ff523fdbef30 100644 (file)
@@ -89,6 +89,7 @@ public:
     int             maxSize;
 };
 
+#if wxUSE_PRINTING_ARCHITECTURE
 /*
  * wxPrintData
  * Encapsulates printer information (not printer dialog information)
@@ -316,6 +317,8 @@ public:
     // paper size id member as well.
     void SetPaperSize(const wxSize& sz);
 
+    void SetPaperId(wxPaperSize& id) { m_printData.SetPaperId(id); };
+
     // Sets the wxPrintData id, plus the paper width/height if found in the paper database.
     void SetPaperSize(wxPaperSize id);
 
@@ -377,5 +380,7 @@ private:
     wxPrintData     m_printData;
 };
 
+#endif // wxUSE_PRINTING_ARCHITECTURE
+
 #endif
 // _WX_CMNDATA_H_BASE_