if ( (flags & wxC2S_NAME) && isOpaque )
{
colName = wxTheColourDatabase->FindName(
- wx_static_cast(const wxColour &, *this)).MakeLower();
+ static_cast<const wxColour &>(*this)).MakeLower();
}
if ( colName.empty() )
bool wxFromString(const wxString& str, wxColourBase *col)
{
- wxCHECK_MSG( col, false, _T("NULL output parameter") );
+ wxCHECK_MSG( col, false, wxT("NULL output parameter") );
if ( str.empty() )
{