X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ae06f91bf1c13aeecaa326207268e05689c60043..6f026b5b63fe7ccb025e84509886f74772b9df13:/src/cocoa/brush.mm?ds=inline diff --git a/src/cocoa/brush.mm b/src/cocoa/brush.mm index cb0e0330b4..b6eb6063b9 100644 --- a/src/cocoa/brush.mm +++ b/src/cocoa/brush.mm @@ -4,9 +4,8 @@ // Author: David Elliott // Modified by: // Created: 2003/07/03 -// RCS-ID: $Id$ // Copyright: (c) 2003 David Elliott -// Licence: wxWidgets licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #include "wx/wxprec.h" @@ -202,19 +201,19 @@ void wxBrush::SetStipple(const wxBitmap& stipple) wxColour wxBrush::GetColour() const { - wxCHECK_MSG( Ok(), wxNullColour, _T("invalid brush") ); + wxCHECK_MSG( IsOk(), wxNullColour, wxT("invalid brush") ); return M_BRUSHDATA->GetColour(); } wxBrushStyle wxBrush::GetStyle() const { - wxCHECK_MSG( Ok(), wxBRUSHSTYLE_INVALID, _T("invalid brush") ); + wxCHECK_MSG( IsOk(), wxBRUSHSTYLE_INVALID, wxT("invalid brush") ); return M_BRUSHDATA->GetStyle(); } wxBitmap *wxBrush::GetStipple() const { - wxCHECK_MSG( Ok(), 0, _T("invalid brush") ); + wxCHECK_MSG( IsOk(), 0, wxT("invalid brush") ); return M_BRUSHDATA->GetStipple(); }