]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cmndata.h
Couple more Unicode fixes.
[wxWidgets.git] / include / wx / cmndata.h
index b8faa2b9a88330fe297690af1cab217ece22ee69..2b298bd01623a93ea6a975d55f799cf538087e1a 100644 (file)
@@ -89,6 +89,7 @@ public:
     int             maxSize;
 };
 
+#if wxUSE_PRINTING_ARCHITECTURE
 /*
  * wxPrintData
  * Encapsulates printer information (not printer dialog information)
@@ -157,7 +158,7 @@ class WXDLLEXPORT wxPrintData: public wxObject
     void operator=(const wxPrintSetupData& setupData);
 #endif
 
-#ifdef __WXMSW__
+#if defined(__WXMSW__)
     // Convert to/from the DEVMODE structure
     void ConvertToNative();
     void ConvertFromNative();
@@ -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_