]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/brush.mm
use wxID_ANY for internal controller control instead of wxID_CHOICE/LIST/TOOLBAR...
[wxWidgets.git] / src / cocoa / brush.mm
index 4dc296399820fa749bcaf125966b9cc505c50488..eef0553a907b6d0cdc6268155fba953d96f83e90 100644 (file)
 /////////////////////////////////////////////////////////////////////////////
 
 #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 <AppKit/NSColor.h>
 
@@ -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)