From: Robin Dunn Date: Tue, 4 Oct 2011 21:37:06 +0000 (+0000) Subject: Add Get|SetPrintMode X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/dc3633287931bce12bc35d04883abddbe7ea34b0 Add Get|SetPrintMode git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69309 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/wx/cmndata.h b/interface/wx/cmndata.h index 6a655569f6..ce9e92d1c6 100644 --- a/interface/wx/cmndata.h +++ b/interface/wx/cmndata.h @@ -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) ; };