]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/colour.h
no real changes, just some cleanup
[wxWidgets.git] / include / wx / msw / colour.h
index c2e259ef45a871d1b5baa658c86239ef0c9a81f3..c3854f50b8475c65eb0d48eab1ca42ae627dae79 100644 (file)
@@ -36,7 +36,8 @@ public:
     // accessors
     // ---------
 
-    bool Ok() const { return m_isInit; }
+    bool Ok() const { return IsOk(); }
+    bool IsOk() const { return m_isInit; }
 
     unsigned char Red() const { return m_red; }
     unsigned char Green() const { return m_green; }
@@ -55,7 +56,7 @@ public:
 
     bool operator != (const wxColour& colour) const { return !(*this == colour); }
 
-    WXCOLORREF GetPixel() const { return m_pixel; };
+    WXCOLORREF GetPixel() const { return m_pixel; }
 
 
 public: