]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/brush.cpp
moved gtk/palette.cpp to generic/paletteg.cpp
[wxWidgets.git] / src / gtk / brush.cpp
index ca0987080c1b7503d8e0ed4e123f0a7a88442cb0..70a2790e4ae08880ff39c36cd20cefa4b2dc3d3f 100644 (file)
@@ -66,15 +66,13 @@ wxBrush::wxBrush( const wxBitmap &stippleBitmap )
 {
     m_refData = new wxBrushRefData();
     M_BRUSHDATA->m_colour = *wxBLACK;
+    
     M_BRUSHDATA->m_stipple = stippleBitmap;
+
     if (M_BRUSHDATA->m_stipple.GetMask())
-    {
-                  M_BRUSHDATA->m_style = wxSTIPPLE_MASK_OPAQUE;
-        }
-        else
-        {              
-                  M_BRUSHDATA->m_style = wxSTIPPLE;
-        }              
+               M_BRUSHDATA->m_style = wxSTIPPLE_MASK_OPAQUE;
+       else
+               M_BRUSHDATA->m_style = wxSTIPPLE;
 
     if (wxTheBrushList) wxTheBrushList->AddBrush( this );
 }
@@ -98,12 +96,12 @@ wxBrush& wxBrush::operator = ( const wxBrush& brush )
     return *this;
 }
 
-bool wxBrush::operator == ( const wxBrush& brush )
+bool wxBrush::operator == ( const wxBrush& brush ) const
 {
     return m_refData == brush.m_refData;
 }
 
-bool wxBrush::operator != ( const wxBrush& brush )
+bool wxBrush::operator != ( const wxBrush& brush ) const
 {
     return m_refData != brush.m_refData;
 }