]> git.saurik.com Git - wxWidgets.git/blobdiff - src/x11/brush.cpp
move m_sizeSet out of wxWindow
[wxWidgets.git] / src / x11 / brush.cpp
index 736dcc6cfde15cf61be7e6c23a772fcfd7da22c6..3eeb858046d692f17b2e02749f609ccf5817186f 100644 (file)
 // for compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
-#include "wx/utils.h"
 #include "wx/brush.h"
-#include "wx/bitmap.h"
-#include "wx/colour.h"
+
+#ifndef WX_PRECOMP
+    #include "wx/utils.h"
+    #include "wx/bitmap.h"
+    #include "wx/colour.h"
+#endif
 
 //-----------------------------------------------------------------------------
 // wxBrush
@@ -39,7 +42,7 @@ public:
     bool operator == (const wxBrushRefData& data) const
     {
         return (m_style == data.m_style &&
-                m_stipple == data.m_stipple &&
+                m_stipple.IsSameAs(data.m_stipple) &&
                 m_colour == data.m_colour);
     }