#include "wx/object.h"
#include "wx/hash.h"
#include "wx/memory.h"
+ #include "wx/crt.h"
#endif
#include <string.h>
Unregister();
}
-wxClassInfo *wxClassInfo::FindClass(const wxChar *className)
+wxClassInfo *wxClassInfo::FindClass(const wxString& className)
{
if ( sm_classTable )
{
{
for ( wxClassInfo *info = sm_first; info ; info = info->m_next )
{
- if ( wxStrcmp(info->GetClassName(), className) == 0 )
+ if ( className == info->GetClassName() )
return info;
}
}
}
-wxObject *wxCreateDynamicObject(const wxChar *name)
+wxObject *wxCreateDynamicObject(const wxString& name)
{
#if defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT
DEBUG_PRINTF(wxObject *wxCreateDynamicObject)