]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cocoa/pen.h
Fixed typo.
[wxWidgets.git] / include / wx / cocoa / pen.h
index 236c326b70bb64b146073e9fc7d0b598af1fe59b..6f14b7831829bf0e1e7948d2258e372e296cf547 100644 (file)
@@ -28,7 +28,7 @@ public:
     wxPen();
     wxPen(const wxColour& col, int width = 1, int style = wxSOLID);
     wxPen(const wxBitmap& stipple, int width);
-    ~wxPen();
+    virtual ~wxPen();
 
     // wxObjectRefData
     wxObjectRefData *CreateRefData() const;
@@ -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)  ;