From 1f428942866d08a8b0c8460d8ff41cb461aa8ab2 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 6 Feb 2002 01:38:48 +0000 Subject: [PATCH] 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 --- include/wx/object.h | 7 ++++++- src/common/object.cpp | 22 +++++++++++++++++----- 2 files changed, 23 insertions(+), 6 deletions(-) diff --git a/include/wx/object.h b/include/wx/object.h index 599bcd5fc6..d0eb3167f3 100644 --- a/include/wx/object.h +++ b/include/wx/object.h @@ -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 // ---------------------------------------------------------------------------- diff --git a/src/common/object.cpp b/src/common/object.cpp index 7bf7dbdc11..ab3ef77b87 100644 --- a/src/common/object.cpp +++ b/src/common/object.cpp @@ -151,8 +151,22 @@ wxClassInfo *wxClassInfo::FindClass(const wxChar *className) } } - // Set pointers to base class(es) to speed up IsKindOf +// a tiny InitializeClasses() helper +/* static */ +inline wxClassInfo *wxClassInfo::GetBaseByName(const wxChar *name) +{ + if ( !name ) + return NULL; + + wxClassInfo *classInfo = (wxClassInfo *)sm_classTable->Get(name); + + // this must be fixed, other things risk work wrongly later if you get this + wxASSERT_MSG( classInfo, _T("base class unknown to wxWindows RTTI") ); + + return classInfo; +} +// Set pointers to base class(es) to speed up IsKindOf void wxClassInfo::InitializeClasses() { // using IMPLEMENT_DYNAMIC_CLASS() macro twice (which may happen if you @@ -185,10 +199,8 @@ void wxClassInfo::InitializeClasses() for(info = sm_first; info; info = info->m_next) { - if (info->GetBaseClassName1()) - info->m_baseInfo1 = (wxClassInfo *)sm_classTable->Get(info->GetBaseClassName1()); - if (info->GetBaseClassName2()) - info->m_baseInfo2 = (wxClassInfo *)sm_classTable->Get(info->GetBaseClassName2()); + info->m_baseInfo1 = GetBaseByName(info->GetBaseClassName1()); + info->m_baseInfo2 = GetBaseByName(info->GetBaseClassName2()); } } -- 2.45.2