const wxClassInfo *ci = wxClassInfo::GetFirst();
for (; ci; ci = ci->GetNext())
{
+ wxString cn = wxString(ci->GetClassName());
+
// is this class derived from wxEvent?
if ( !ci->IsKindOf(CLASSINFO(wxEvent)) ||
- wxString(ci->GetClassName()) == "wxEvent" )
+ cn == "wxEvent" )
continue;
const std::string
msg = std::string("Event class \"") +
- std::string(ci->GetClassName()) + "\"";
+ std::string(cn.c_str()) + "\"";
CPPUNIT_ASSERT_MESSAGE( msg, ci->IsDynamic() );