]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/brush.h
compilation fix for windows compilers: _wrename is declared in io.h
[wxWidgets.git] / include / wx / gtk1 / brush.h
index ecdfe463981e55686594dcba1ce547b08e321546..51e1c7854854a3771190d9dbea04a386dd5b0329 100644 (file)
@@ -34,14 +34,10 @@ public:
 
     wxBrush( const wxColour &colour, int style = wxSOLID );
     wxBrush( const wxBitmap &stippleBitmap );
-    ~wxBrush();
+    virtual ~wxBrush();
 
-    wxBrush( const wxBrush &brush )
-        : wxBrushBase()
-        { Ref(brush); }
-    wxBrush& operator = ( const wxBrush& brush ) { Ref(brush); return *this; }
-
-    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); }