void SetStyle(int style)
{
- if ( m_style != wxSOLID && m_style == wxTRANSPARENT )
+ if ( style != wxSOLID && style != wxTRANSPARENT )
{
- wxFAIL_MSG( _T("only wxSOLID and wxTRANSPARENT styles are supported") );
+ wxFAIL_MSG( wxT("only wxSOLID and wxTRANSPARENT styles are supported") );
style = wxSOLID;
}
wxBrush::wxBrush(const wxBitmap &stippleBitmap)
{
- wxFAIL_MSG( "brushes with stipple bitmaps not implemented" );
+ wxFAIL_MSG( wxT("brushes with stipple bitmaps not implemented") );
m_refData = new wxBrushRefData(*wxBLACK);
}
return m_refData == brush.m_refData;
}
-bool wxBrush::Ok() const
+bool wxBrush::IsOk() const
{
return ((m_refData) && M_BRUSHDATA->m_colour.Ok());
}
wxBitmap *wxBrush::GetStipple() const
{
- wxFAIL_MSG( "brushes with stipple bitmaps not implemented" );
+ wxFAIL_MSG( wxT("brushes with stipple bitmaps not implemented") );
return &wxNullBitmap;
}
void wxBrush::SetStipple(const wxBitmap& WXUNUSED(stipple))
{
- wxFAIL_MSG( "brushes with stipple bitmaps not implemented" );
+ wxFAIL_MSG( wxT("brushes with stipple bitmaps not implemented") );
}
wxObjectRefData *wxBrush::CreateRefData() const