removed assert from wxColour::InitFromName() as there is no way to bypass it (see comment there)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11433 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -27,7 +27,7 @@ class wxColourRefData: public wxObjectRefData
|
|||||||
public:
|
public:
|
||||||
wxColourRefData();
|
wxColourRefData();
|
||||||
~wxColourRefData();
|
~wxColourRefData();
|
||||||
|
|
||||||
void FreeColour();
|
void FreeColour();
|
||||||
|
|
||||||
public:
|
public:
|
||||||
@@ -108,8 +108,15 @@ void wxColour::InitFromName( const wxString &colourName )
|
|||||||
m_refData = new wxColourRefData();
|
m_refData = new wxColourRefData();
|
||||||
if (!gdk_color_parse( colourName.mb_str(), &M_COLDATA->m_color ))
|
if (!gdk_color_parse( colourName.mb_str(), &M_COLDATA->m_color ))
|
||||||
{
|
{
|
||||||
wxFAIL_MSG( wxT("wxColour: couldn't find colour") );
|
// VZ: asserts are good in general but this one is triggered by
|
||||||
|
// calling wxColourDatabase::FindColour() with an
|
||||||
|
// unrecognized colour name and this can't be avoided from the
|
||||||
|
// user code, so don't give it here
|
||||||
|
//
|
||||||
|
// a better solution would be to changed code in FindColour()
|
||||||
|
|
||||||
|
//wxFAIL_MSG( wxT("wxColour: couldn't find colour") );
|
||||||
|
|
||||||
delete m_refData;
|
delete m_refData;
|
||||||
m_refData = (wxObjectRefData *) NULL;
|
m_refData = (wxObjectRefData *) NULL;
|
||||||
}
|
}
|
||||||
@@ -135,16 +142,16 @@ wxColour& wxColour::operator = ( const wxColour& col )
|
|||||||
bool wxColour::operator == ( const wxColour& col ) const
|
bool wxColour::operator == ( const wxColour& col ) const
|
||||||
{
|
{
|
||||||
if (m_refData == col.m_refData) return TRUE;
|
if (m_refData == col.m_refData) return TRUE;
|
||||||
|
|
||||||
if (!m_refData) return FALSE;
|
if (!m_refData) return FALSE;
|
||||||
if (!col.m_refData) return FALSE;
|
if (!col.m_refData) return FALSE;
|
||||||
|
|
||||||
GdkColor *own = &(((wxColourRefData*)m_refData)->m_color);
|
GdkColor *own = &(((wxColourRefData*)m_refData)->m_color);
|
||||||
GdkColor *other = &(((wxColourRefData*)col.m_refData)->m_color);
|
GdkColor *other = &(((wxColourRefData*)col.m_refData)->m_color);
|
||||||
if (own->red != other->red) return FALSE;
|
if (own->red != other->red) return FALSE;
|
||||||
if (own->blue != other->blue) return FALSE;
|
if (own->blue != other->blue) return FALSE;
|
||||||
if (own->green != other->green) return FALSE;
|
if (own->green != other->green) return FALSE;
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -194,7 +201,7 @@ void wxColour::CalcPixel( GdkColormap *cmap )
|
|||||||
if (!Ok()) return;
|
if (!Ok()) return;
|
||||||
|
|
||||||
if ((M_COLDATA->m_hasPixel) && (M_COLDATA->m_colormap == cmap)) return;
|
if ((M_COLDATA->m_hasPixel) && (M_COLDATA->m_colormap == cmap)) return;
|
||||||
|
|
||||||
M_COLDATA->FreeColour();
|
M_COLDATA->FreeColour();
|
||||||
|
|
||||||
#ifdef __WXGTK20__
|
#ifdef __WXGTK20__
|
||||||
@@ -209,7 +216,7 @@ void wxColour::CalcPixel( GdkColormap *cmap )
|
|||||||
M_COLDATA->m_hasPixel = gdk_colormap_alloc_color( cmap, &M_COLDATA->m_color, FALSE, TRUE );
|
M_COLDATA->m_hasPixel = gdk_colormap_alloc_color( cmap, &M_COLDATA->m_color, FALSE, TRUE );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
M_COLDATA->m_hasPixel = gdk_color_alloc( cmap, &M_COLDATA->m_color );
|
M_COLDATA->m_hasPixel = gdk_color_alloc( cmap, &M_COLDATA->m_color );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -27,7 +27,7 @@ class wxColourRefData: public wxObjectRefData
|
|||||||
public:
|
public:
|
||||||
wxColourRefData();
|
wxColourRefData();
|
||||||
~wxColourRefData();
|
~wxColourRefData();
|
||||||
|
|
||||||
void FreeColour();
|
void FreeColour();
|
||||||
|
|
||||||
public:
|
public:
|
||||||
@@ -108,8 +108,15 @@ void wxColour::InitFromName( const wxString &colourName )
|
|||||||
m_refData = new wxColourRefData();
|
m_refData = new wxColourRefData();
|
||||||
if (!gdk_color_parse( colourName.mb_str(), &M_COLDATA->m_color ))
|
if (!gdk_color_parse( colourName.mb_str(), &M_COLDATA->m_color ))
|
||||||
{
|
{
|
||||||
wxFAIL_MSG( wxT("wxColour: couldn't find colour") );
|
// VZ: asserts are good in general but this one is triggered by
|
||||||
|
// calling wxColourDatabase::FindColour() with an
|
||||||
|
// unrecognized colour name and this can't be avoided from the
|
||||||
|
// user code, so don't give it here
|
||||||
|
//
|
||||||
|
// a better solution would be to changed code in FindColour()
|
||||||
|
|
||||||
|
//wxFAIL_MSG( wxT("wxColour: couldn't find colour") );
|
||||||
|
|
||||||
delete m_refData;
|
delete m_refData;
|
||||||
m_refData = (wxObjectRefData *) NULL;
|
m_refData = (wxObjectRefData *) NULL;
|
||||||
}
|
}
|
||||||
@@ -135,16 +142,16 @@ wxColour& wxColour::operator = ( const wxColour& col )
|
|||||||
bool wxColour::operator == ( const wxColour& col ) const
|
bool wxColour::operator == ( const wxColour& col ) const
|
||||||
{
|
{
|
||||||
if (m_refData == col.m_refData) return TRUE;
|
if (m_refData == col.m_refData) return TRUE;
|
||||||
|
|
||||||
if (!m_refData) return FALSE;
|
if (!m_refData) return FALSE;
|
||||||
if (!col.m_refData) return FALSE;
|
if (!col.m_refData) return FALSE;
|
||||||
|
|
||||||
GdkColor *own = &(((wxColourRefData*)m_refData)->m_color);
|
GdkColor *own = &(((wxColourRefData*)m_refData)->m_color);
|
||||||
GdkColor *other = &(((wxColourRefData*)col.m_refData)->m_color);
|
GdkColor *other = &(((wxColourRefData*)col.m_refData)->m_color);
|
||||||
if (own->red != other->red) return FALSE;
|
if (own->red != other->red) return FALSE;
|
||||||
if (own->blue != other->blue) return FALSE;
|
if (own->blue != other->blue) return FALSE;
|
||||||
if (own->green != other->green) return FALSE;
|
if (own->green != other->green) return FALSE;
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -194,7 +201,7 @@ void wxColour::CalcPixel( GdkColormap *cmap )
|
|||||||
if (!Ok()) return;
|
if (!Ok()) return;
|
||||||
|
|
||||||
if ((M_COLDATA->m_hasPixel) && (M_COLDATA->m_colormap == cmap)) return;
|
if ((M_COLDATA->m_hasPixel) && (M_COLDATA->m_colormap == cmap)) return;
|
||||||
|
|
||||||
M_COLDATA->FreeColour();
|
M_COLDATA->FreeColour();
|
||||||
|
|
||||||
#ifdef __WXGTK20__
|
#ifdef __WXGTK20__
|
||||||
@@ -209,7 +216,7 @@ void wxColour::CalcPixel( GdkColormap *cmap )
|
|||||||
M_COLDATA->m_hasPixel = gdk_colormap_alloc_color( cmap, &M_COLDATA->m_color, FALSE, TRUE );
|
M_COLDATA->m_hasPixel = gdk_colormap_alloc_color( cmap, &M_COLDATA->m_color, FALSE, TRUE );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
M_COLDATA->m_hasPixel = gdk_color_alloc( cmap, &M_COLDATA->m_color );
|
M_COLDATA->m_hasPixel = gdk_color_alloc( cmap, &M_COLDATA->m_color );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user