]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/colour.h
Playing with wxgrid, adding optionnally native columns labels
[wxWidgets.git] / include / wx / msw / colour.h
index 0faf3d086e2792ae672266e030005f4ce1c8de4d..14760092270976b49c0bd87f85c192a5a854d0f6 100644 (file)
@@ -36,8 +36,7 @@ public:
     // accessors
     // ---------
 
-    bool Ok() const { return IsOk(); }
-    bool IsOk() const { return m_isInit; }
+    virtual bool IsOk() const { return m_isInit; }
 
     unsigned char Red() const { return m_red; }
     unsigned char Green() const { return m_green; }
@@ -56,7 +55,7 @@ public:
 
     bool operator != (const wxColour& colour) const { return !(*this == colour); }
 
-    WXCOLORREF GetPixel() const { return m_pixel; };
+    WXCOLORREF GetPixel() const { return m_pixel; }
 
 
 public: