]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/stubs/colour.h
Added userData to wxSizerItems and other things to make sizers more
[wxWidgets.git] / include / wx / stubs / colour.h
index 16ffdac9aad515ddaba442f7dc90fb337c7dba9b..24028b6756baf4926821d96666acaa1ccc8a9062 100644 (file)
@@ -64,13 +64,13 @@ public:
   unsigned char Blue() const { return m_blue; }
 
   // comparison
-  bool operator == (const wxColour& colour)
+  bool operator == (const wxColour& colour) const
   {
     return (m_red == colour.m_red && 
             m_green == colour.m_green && 
             m_blue == colour.m_blue);
   }
-  bool operator != (const wxColour& colour) { return !(*this == colour); }
+  bool operator != (const wxColour& colour) const { return !(*this == colour); }
 
   void InitFromName(const wxString& col);