]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/colour.h
hack to allow icons in wxStaticBitmap as well as bitmaps
[wxWidgets.git] / include / wx / msw / colour.h
index 52f15ed96fb825f8ea9ff3e15a7daf00bd6a281d..0c3def29846bab5669cca887b3b348b3e3b384e6 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); }
 
   WXCOLORREF GetPixel() const { return m_pixel; };