use wxColourDatabase::Find(), not obsolete FindColour(), in wxColour::InitFromName()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25301 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2004-01-22 12:16:04 +00:00
parent e9cece45b9
commit 211436b6f4
2 changed files with 28 additions and 29 deletions

View File

@@ -22,10 +22,12 @@
IMPLEMENT_DYNAMIC_CLASS(wxColour, wxObject)
wxColour::wxColour ()
: m_cocoaNSColor(NULL)
void wxColour::Init()
{
m_red = m_blue = m_green = 0;
m_cocoaNSColor = NULL;
m_red =
m_blue =
m_green = 0;
}
wxColour::wxColour (const wxColour& col)
@@ -47,21 +49,20 @@ wxColour& wxColour::operator =(const wxColour& col)
return *this;
}
void wxColour::InitFromName(const wxString& col)
void wxColour::InitFromName(const wxString& name)
{
wxColour *the_colour = wxTheColourDatabase->FindColour (col);
if (the_colour)
if ( wxTheColourDatabase )
{
*this = *the_colour;
}
else
{
[m_cocoaNSColor release];
m_cocoaNSColor = NULL;
m_red = 0;
m_green = 0;
m_blue = 0;
wxColour col = wxTheColourDatabase->Find(name);
if ( col.Ok() )
{
*this = col;
return;
}
}
// leave invalid
Init();
}
wxColour::~wxColour ()