Make wxNativePrinterDC::IsOk() const in wxOSX.

Closes #16837.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@78443 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2015-02-04 16:18:50 +00:00
parent def2bcb8cd
commit 5ffda80677

View File

@ -45,7 +45,7 @@ public :
// returns 0 in case of no Error, otherwise platform specific error codes
virtual wxUint32 GetStatus() const = 0 ;
bool IsOk() { return GetStatus() == 0 ; }
bool IsOk() const { return GetStatus() == 0 ; }
static wxNativePrinterDC* Create(wxPrintData* data) ;
} ;