]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/brush.cpp
fixed wx_media linkage/export problems - from RN patch
[wxWidgets.git] / src / msw / brush.cpp
index e14fd9fcbc01ccda85d377e2ba3cb4e467a75b7f..cf939a5ff25fc6ed5872740ac8959aae16708195 100644 (file)
@@ -243,16 +243,6 @@ wxBrush::~wxBrush()
 // wxBrush house keeping stuff
 // ----------------------------------------------------------------------------
 
-wxBrush& wxBrush::operator=(const wxBrush& brush)
-{
-    if ( this != &brush )
-    {
-        Ref(brush);
-    }
-
-    return *this;
-}
-
 bool wxBrush::operator==(const wxBrush& brush) const
 {
     const wxBrushRefData *brushData = (wxBrushRefData *)brush.m_refData;
@@ -334,5 +324,3 @@ void wxBrush::SetStipple(const wxBitmap& stipple)
 
     M_BRUSHDATA->SetStipple(stipple);
 }
-
-