]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/pen.h
fix unused parameters warnings
[wxWidgets.git] / include / wx / gtk / pen.h
index 56927ff21b1436fdf635ad0f4c28f264a20622f4..b273d2c6df89a1e41ba1e57ff1311eb0c2fb20dd 100644 (file)
@@ -25,9 +25,10 @@ public:
     wxPen() { }
 
     wxPen( const wxColour &colour, int width = 1, int style = wxSOLID );
-    ~wxPen();
+    virtual ~wxPen();
 
-    bool Ok() const { return m_refData != NULL; }
+    bool Ok() const { return IsOk(); }
+    bool IsOk() const { return m_refData != NULL; }
 
     bool operator == ( const wxPen& pen ) const;
     bool operator != (const wxPen& pen) const { return !(*this == pen); }