X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/065e208ec09e3d08d51d9604497f92f53c210f93..081fcce3ba1647a7bf739a55a1432ebf3c676128:/src/cocoa/brush.mm diff --git a/src/cocoa/brush.mm b/src/cocoa/brush.mm index 3e24adc742..eef0553a90 100644 --- a/src/cocoa/brush.mm +++ b/src/cocoa/brush.mm @@ -6,15 +6,17 @@ // Created: 2003/07/03 // RCS-ID: $Id$ // Copyright: (c) 2003 David Elliott -// Licence: wxWidgets licence +// Licence: wxWidgets licence ///////////////////////////////////////////////////////////////////////////// #include "wx/wxprec.h" + +#include "wx/brush.h" + #ifndef WX_PRECOMP #include "wx/utils.h" - #include "wx/brush.h" + #include "wx/colour.h" #endif //WX_PRECOMP -#include "wx/colour.h" #import @@ -94,7 +96,7 @@ bool wxBrushRefData::operator==(const wxBrushRefData& data) const // don't compare our NSColor return m_style == data.m_style && m_colour == data.m_colour && - m_stipple == data.m_stipple; + m_stipple.IsSameAs(data.m_stipple); } void wxBrushRefData::DoSetStipple(const wxBitmap& stipple) @@ -215,4 +217,3 @@ WX_NSColor wxBrush::GetNSColor() return [NSColor clearColor]; return M_BRUSHDATA->GetNSColor(); } -