]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/brush.cpp
Implement wxChoice::Insert.
[wxWidgets.git] / src / msw / brush.cpp
index 5eae40c16a16c93f2ac807542f54e3dcc1a283b3..e14fd9fcbc01ccda85d377e2ba3cb4e467a75b7f 100644 (file)
@@ -6,17 +6,13 @@
 // Created:     04/01/98
 // RCS-ID:      $Id$
 // Copyright:   (c) Julian Smart
-// Licence:     wxWidgets licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 // ============================================================================
 // 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;