]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cocoa/pen.h
source id type is unsigned; minor cleanup
[wxWidgets.git] / include / wx / cocoa / pen.h
index 9f46d56becab1e87ac02ab739aad725b1d1d4084..6f14b7831829bf0e1e7948d2258e372e296cf547 100644 (file)
@@ -39,7 +39,8 @@ public:
     inline bool operator != (const wxPen& pen) const
     {   return m_refData != pen.m_refData; }
 
-    virtual bool Ok() const { return (m_refData != NULL) ; }
+    virtual bool Ok() const { return IsOk(); }
+    virtual bool IsOk() const { return (m_refData != NULL) ; }
 
     void SetColour(const wxColour& col) ;
     void SetColour(unsigned char r, unsigned char g, unsigned char b)  ;