]> git.saurik.com Git - wxWidgets.git/commitdiff
more informational assert about the base class being unknown to wxRTTI system (patch...
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 1 Apr 2002 23:58:46 +0000 (23:58 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 1 Apr 2002 23:58:46 +0000 (23:58 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14899 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/object.cpp

index ab3ef77b87633d04a4ed8840a4c71be2500d0172..776878d214a7f1440480b3c8596fdd29996d5333 100644 (file)
@@ -161,7 +161,12 @@ inline wxClassInfo *wxClassInfo::GetBaseByName(const wxChar *name)
     wxClassInfo *classInfo = (wxClassInfo *)sm_classTable->Get(name);
 
     // this must be fixed, other things risk work wrongly later if you get this
     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") );
+    wxASSERT_MSG( classInfo,
+                  wxString::Format
+                  (
+                    _T("base class '%s' is unknown to wxWindows RTTI"),
+                    name
+                  ) );
 
     return classInfo;
 }
 
     return classInfo;
 }