]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cocoa/brush.h
fixed bug in Set() on DST days (patch 1097811)
[wxWidgets.git] / include / wx / cocoa / brush.h
index d561168a2415cf99c791d8711962a29b9280657f..e3d793db541696443505f5924c3d038b0c878e61 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     2003/07/03
 // RCS-ID:      $Id$
 // Copyright:   (c) 2003 David Elliott
-// Licence:    wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef __WX_COCOA_BRUSH_H__
@@ -21,7 +21,7 @@ class WXDLLEXPORT wxBrush;
 // ========================================================================
 // wxBrush
 // ========================================================================
-class WXDLLEXPORT wxBrush: public wxGDIObject
+class WXDLLEXPORT wxBrush: public wxBrushBase
 {
     DECLARE_DYNAMIC_CLASS(wxBrush)
 // ------------------------------------------------------------------------
@@ -32,7 +32,7 @@ public:
     wxBrush(const wxColour& col, int style = wxSOLID);
     wxBrush(const wxBitmap& stipple);
     wxBrush(const wxBrush& brush)
-    :   wxGDIObject()
+    :   wxBrushBase()
     {   Ref(brush); }
     ~wxBrush();
 
@@ -56,7 +56,7 @@ public:
 
     // accessors
     wxColour GetColour() const;
-    int GetStyle() const;
+    virtual int GetStyle() const;
     wxBitmap *GetStipple() const;
 
     virtual bool Ok() const