]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/pen.h
fix unused parameters warnings
[wxWidgets.git] / include / wx / gtk / pen.h
index 44a80105e04e86101b955faaa18d56b65e97b6e7..b273d2c6df89a1e41ba1e57ff1311eb0c2fb20dd 100644 (file)
@@ -27,7 +27,8 @@ public:
     wxPen( const wxColour &colour, int width = 1, int style = wxSOLID );
     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); }