]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/x11/brush.h
ignore warning 4535 for VC8 too as it still seems to be harmless
[wxWidgets.git] / include / wx / x11 / brush.h
index c794e34416c18a4c07e80764b00836c9ec4e72d5..c261ba205ac91eb04db0d59320536441eda488c2 100644 (file)
@@ -33,9 +33,10 @@ public:
 
     wxBrush( const wxColour &colour, int style = wxSOLID );
     wxBrush( const wxBitmap &stippleBitmap );
-    ~wxBrush();
+    virtual ~wxBrush();
 
-    bool Ok() const { return m_refData != NULL; }
+    bool Ok() const { return IsOk(); }
+    bool IsOk() const { return m_refData != NULL; }
 
     bool operator == ( const wxBrush& brush ) const;
     bool operator != (const wxBrush& brush) const { return !(*this == brush); }