]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/brush.cpp
wxColour(const char *) ctor related modifications
[wxWidgets.git] / src / gtk1 / brush.cpp
index 9b36dfce3d3571f4cab95c728264b3b3893a3d20..ae90ec472d5236f012aea3fa36e0b1f7f09a9b33 100644 (file)
@@ -62,15 +62,6 @@ wxBrush::wxBrush( const wxColour &colour, int style )
   if (wxTheBrushList) wxTheBrushList->AddBrush( this );
 }
 
-wxBrush::wxBrush( const wxString &colourName, int style )
-{
-  m_refData = new wxBrushRefData();
-  M_BRUSHDATA->m_style = style;
-  M_BRUSHDATA->m_colour = colourName;
-  
-  if (wxTheBrushList) wxTheBrushList->AddBrush( this );
-}
-
 wxBrush::wxBrush( const wxBitmap &stippleBitmap )
 {
   m_refData = new wxBrushRefData();
@@ -161,12 +152,6 @@ void wxBrush::SetColour( const wxColour& col )
   M_BRUSHDATA->m_colour = col;
 }
 
-void wxBrush::SetColour( const wxString& col )
-{
-  Unshare();
-  M_BRUSHDATA->m_colour = col;
-}
-
 void wxBrush::SetColour( unsigned char r, unsigned char g, unsigned char b )
 {
   Unshare();