]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stubs/colour.cpp
Compile fix for filefn.cpp
[wxWidgets.git] / src / stubs / colour.cpp
index d342d516de631ee3b2844d89fadbfbfc1bae0b42..8d0827ef1d7f1536832bf8c34eb3feb2e154cecb 100644 (file)
@@ -65,7 +65,7 @@ wxColour& wxColour::operator =(const wxColour& col)
   return *this;
 }
 
   return *this;
 }
 
-wxColour::wxColour (const wxString& col)
+void wxColour::InitFromName(const wxString& col)
 {
     wxColour *the_colour = wxTheColourDatabase->FindColour (col);
     if (the_colour)
 {
     wxColour *the_colour = wxTheColourDatabase->FindColour (col);
     if (the_colour)
@@ -91,29 +91,6 @@ wxColour::~wxColour ()
 {
 }
 
 {
 }
 
-wxColour& wxColour::operator = (const wxString& col)
-{
-    wxColour *the_colour = wxTheColourDatabase->FindColour (col);
-    if (the_colour)
-    {
-        m_red = the_colour->Red ();
-        m_green = the_colour->Green ();
-        m_blue = the_colour->Blue ();
-        m_isInit = TRUE;
-    }
-    else
-    {
-        m_red = 0;
-        m_green = 0;
-        m_blue = 0;
-        m_isInit = FALSE;
-    }
-/* TODO
-    m_pixel = PALETTERGB (m_red, m_green, m_blue);
-*/
-    return (*this);
-}
-
 void wxColour::Set (unsigned char r, unsigned char g, unsigned char b)
 {
     m_red = r;
 void wxColour::Set (unsigned char r, unsigned char g, unsigned char b)
 {
     m_red = r;