X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4439f88a1e62d887cf1aeb7855a2e72fb49d7e01..6f026b5b63fe7ccb025e84509886f74772b9df13:/src/dfb/brush.cpp diff --git a/src/dfb/brush.cpp b/src/dfb/brush.cpp index e636ecc33e..c4935f602e 100644 --- a/src/dfb/brush.cpp +++ b/src/dfb/brush.cpp @@ -3,7 +3,6 @@ // Purpose: wxBrush class implementation // Author: Vaclav Slavik // Created: 2006-08-04 -// RCS-ID: $Id$ // Copyright: (c) 2006 REA Elektronik GmbH // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -85,20 +84,20 @@ wxBrush::wxBrush(const wxBitmap &stippleBitmap) bool wxBrush::operator==(const wxBrush& brush) const { -#warning "this is incorrect (MGL too)" +#warning "this is incorrect" return m_refData == brush.m_refData; } wxBrushStyle wxBrush::GetStyle() const { - wxCHECK_MSG( Ok(), wxBRUSHSTYLE_INVALID, _T("invalid brush") ); + wxCHECK_MSG( IsOk(), wxBRUSHSTYLE_INVALID, wxT("invalid brush") ); return M_BRUSHDATA->m_style; } wxColour wxBrush::GetColour() const { - wxCHECK_MSG( Ok(), wxNullColour, _T("invalid brush") ); + wxCHECK_MSG( IsOk(), wxNullColour, wxT("invalid brush") ); return M_BRUSHDATA->m_colour; }