]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/x11/colour.h
add IsOk() to all classes having Ok() method (patch 1570985)
[wxWidgets.git] / include / wx / x11 / colour.h
index 17c4f534c0671ec589daf3ff52244b1f2a7f16d8..101055920a921206700644142c927e2d13a960a7 100644 (file)
@@ -44,7 +44,8 @@ public:
 
     virtual ~wxColour();
 
-    bool Ok() const { return m_refData != NULL; }
+    bool Ok() const { return IsOk(); }
+    bool IsOk() const { return m_refData != NULL; }
 
     bool operator == ( const wxColour& col ) const;
     bool operator != ( const wxColour& col ) const { return !(*this == col); }