if ( !m_hWnd )
{
wxLogDebug(wxT("Failed to create a control of class '%s'"), classname);
- wxFAIL_MSG(_T("something is very wrong"));
+ wxFAIL_MSG(_T("something is very wrong, CreateWindowEx failed"));
return FALSE;
}
// set up fonts and colours
InheritAttributes();
- SetFont(GetDefaultAttributes().font);
+ if (!m_hasFont)
+ SetFont(GetDefaultAttributes().font);
// set the size now if no initial size specified
SetInitialBestSize(size);