]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/printdlg.h
moved AppendAppName() from MSW to common code; modified it to not double the trailing...
[wxWidgets.git] / include / wx / msw / printdlg.h
index b8bebcc695227a13166109759577f40e1d41df9e..681878516cc59a7d09248013ba24bb7c300cf401 100644 (file)
@@ -35,19 +35,19 @@ public:
     wxWindowsPrintNativeData();
     virtual ~wxWindowsPrintNativeData();
     
-    virtual bool ConvertTo( wxPrintData &data );
-    virtual bool ConvertFrom( const wxPrintData &data );
+    virtual bool TransferTo( wxPrintData &data );
+    virtual bool TransferFrom( const wxPrintData &data );
     
     virtual bool Ok() const;
     
-    void* GetNativeData() const { return m_devMode; }
-    void SetNativeData(void* data) { m_devMode = data; }
-    void* GetNativeDataDevNames() const { return m_devNames; }
-    void SetNativeDataDevNames(void* data) { m_devNames = data; }
+    void* GetDevMode() const { return m_devMode; }
+    void SetDevMode(void* data) { m_devMode = data; }
+    void* GetDevNames() const { return m_devNames; }
+    void SetDevNames(void* data) { m_devNames = data; }
     
 private:
-    void*           m_devMode;
-    void*           m_devNames;
+    void* m_devMode;
+    void* m_devNames;
 
 private:
     DECLARE_DYNAMIC_CLASS(wxWindowsPrintNativeData)