]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gdiobj.h
another unused parameter warning (plenty left in .mm files...)
[wxWidgets.git] / include / wx / gdiobj.h
index 2464f78827100ae008416589e4d498083f577750..ebe33197534f3fa0c014912dbb6a9895432ca182 100644 (file)
@@ -31,6 +31,11 @@ class WXDLLIMPEXP_CORE wxGDIObject: public wxObject
 public:
     bool IsNull() const { return m_refData == NULL; }
 
+    // older version, for backwards compat
+    bool Ok() const { return IsOk(); }
+    
+    virtual bool IsOk() const { return (m_refData != NULL) ; }
+
 #if defined(__WXMSW__) || defined(__WXPM__) || defined(__WXPALMOS__)
     // Creates the resource
     virtual bool RealizeResource() { return false; }