assert when a base class of a class in wxRTTI system is not found

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14024 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-02-06 01:38:48 +00:00
parent f98bd52a3e
commit 1f42894286
2 changed files with 23 additions and 6 deletions

View File

@@ -122,12 +122,17 @@ public:
static wxClassInfo *sm_first;
wxClassInfo *m_next;
// FIXME: this should be private (currently used directly by way too
// many clients)
static wxHashTable *sm_classTable;
private:
// InitializeClasses() helper
static wxClassInfo *GetBaseByName(const wxChar *name);
};
WXDLLEXPORT wxObject *wxCreateDynamicObject(const wxChar *name);
// ----------------------------------------------------------------------------
// Dynamic class macros
// ----------------------------------------------------------------------------