]> git.saurik.com Git - wxWidgets.git/commitdiff
Add Get|SetPrintMode
authorRobin Dunn <robin@alldunn.com>
Tue, 4 Oct 2011 21:37:06 +0000 (21:37 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 4 Oct 2011 21:37:06 +0000 (21:37 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69309 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/cmndata.h

index 6a655569f663c712223b1532f76beff55fe6c230..ce9e92d1c66c6b9f83b6d2e47c680d183de1bfd5 100644 (file)
@@ -271,7 +271,6 @@ enum wxPrintBin
     long GetPrinterTranslateX() const ;
     long GetPrinterTranslateY() const ;
     // wxPRINT_MODE_PREVIEW, wxPRINT_MODE_FILE, wxPRINT_MODE_PRINTER
-    wxPrintMode GetPrintMode() const ;
 
     void SetPrinterCommand(const wxString& command) ;
     void SetPrinterOptions(const wxString& options) ;
@@ -284,7 +283,6 @@ enum wxPrintBin
     void SetPrinterTranslateX(long x) ;
     void SetPrinterTranslateY(long y) ;
     void SetPrinterTranslation(long x, long y) ;
-    void SetPrintMode(wxPrintMode printMode) ;
     @endcode
 
     @library{wxcore}
@@ -450,6 +448,9 @@ public:
 
     wxString GetFilename() const;
     void SetFilename( const wxString &filename );
+
+    wxPrintMode GetPrintMode() const ;
+    void SetPrintMode(wxPrintMode printMode) ;
 };