]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/brush.cpp
fix off by one (or rather "off by border width") bug in ScrollWindow() (part of patch...
[wxWidgets.git] / src / gtk1 / brush.cpp
index 392418c11e77db11adc06a6ce59e42df63b8073f..3b9330bb1a42ded7ae74d126376f56db9b75a064 100644 (file)
@@ -41,7 +41,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);
     }