]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/os2/brush.h
fixed all the other ports broken by controls labels in wxToolBar patch commit
[wxWidgets.git] / include / wx / os2 / brush.h
index 04b160e4f78b0f94d64de040b27db2462688ff9f..c37808f3ef6a837729f8f6df55add2039d692178 100644 (file)
@@ -26,6 +26,13 @@ public:
     wxBrushRefData(const wxBrushRefData& rData);
     virtual ~wxBrushRefData();
 
+    bool operator == (const wxBrushRefData& data) const
+    {
+        return (m_nStyle == data.m_nStyle &&
+                m_vStipple.IsSameAs(data.m_vStipple) &&
+                m_vColour == data.m_vColour);
+    }
+
 protected:
     int         m_nStyle;
     wxBitmap    m_vStipple ;
@@ -47,7 +54,7 @@ public:
     wxBrush(const wxBitmap& rStipple);
     virtual ~wxBrush();
 
-    inline bool operator == (const wxBrush& rBrush) const;
+    bool operator == (const wxBrush& rBrush) const;
     inline bool operator != (const wxBrush& rBrush) const { return !(*this == rBrush); }
 
     virtual void SetColour(const wxColour& rColour);