- wxBrush& operator = (const wxBrush& brush)
- { if (*this == brush) return (*this); Ref(brush); return *this; }
- bool operator == (const wxBrush& brush)
- { return m_refData == brush.m_refData; }
- bool operator != (const wxBrush& brush)
- { return m_refData != brush.m_refData; }
+ bool operator == (const wxBrush& brush) const;
+ bool operator != (const wxBrush& brush) const
+ { return !(*this == brush); }