]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/brush.cpp
renamed AddSubPage() with pos parameter to InsertSubPage()
[wxWidgets.git] / src / msw / brush.cpp
index 29161607c3220ee41e9c3234a336dd2ac08a5d9b..e377793c1ce38fc40fbf2d2e03d462c1ed5aad07 100644 (file)
 // declarations
 // ============================================================================
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma implementation "brush.h"
-#endif
-
 // ----------------------------------------------------------------------------
 // headers
 // ----------------------------------------------------------------------------
@@ -103,7 +99,8 @@ wxBrushRefData::wxBrushRefData(const wxBitmap& stipple)
 }
 
 wxBrushRefData::wxBrushRefData(const wxBrushRefData& data)
-              : m_stipple(data.m_stipple),
+              : wxGDIRefData(),
+                m_stipple(data.m_stipple),
                 m_colour(data.m_colour)
 {
     m_style = data.m_style;
@@ -337,5 +334,3 @@ void wxBrush::SetStipple(const wxBitmap& stipple)
 
     M_BRUSHDATA->SetStipple(stipple);
 }
-
-