X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6631a2a562fc35a0faf639ed287ea801fcef1176..5b72b3440180cf270f4518ff0e28ff56582438fb:/src/cocoa/brush.mm diff --git a/src/cocoa/brush.mm b/src/cocoa/brush.mm index 753c947cea..3735acb41b 100644 --- a/src/cocoa/brush.mm +++ b/src/cocoa/brush.mm @@ -139,7 +139,6 @@ WX_NSColor wxBrushRefData::GetNSColor() // Brushes wxBrush::wxBrush() { - m_refData = new wxBrushRefData; } wxBrush::~wxBrush() @@ -210,7 +209,8 @@ wxBitmap *wxBrush::GetStipple() const WX_NSColor wxBrush::GetNSColor() { - wxCHECK_MSG( Ok(), NULL, _T("invalid brush") ); + if(!m_refData) + return [NSColor clearColor]; return M_BRUSHDATA->GetNSColor(); }