]> git.saurik.com Git - wxWidgets.git/commitdiff
show the name of incrimanted class in RTTI registration assert
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 31 Aug 2005 15:27:16 +0000 (15:27 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 31 Aug 2005 15:27:16 +0000 (15:27 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35386 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/object.cpp

index 25e6b04650d1b46e3af76136cf61eaa023d67c54..31373d34b454e326c2c90fb5d7d682b49101b20d 100644 (file)
@@ -236,7 +236,12 @@ void wxClassInfo::Register()
     // and eventually die with "out of memory" - as this is quite hard to
     // detect if you're unaware of this, try to do some checks here.
     wxASSERT_MSG( sm_classTable->Get(m_className) == NULL,
-                  _T("class already in RTTI table - have you used IMPLEMENT_DYNAMIC_CLASS() twice (may be by linking some object module(s) twice)?") );
+        wxString::Format
+        (
+            _T("Class \"%s\" already in RTTI table - have you used IMPLEMENT_DYNAMIC_CLASS() twice (may be by linking some objecti module(s) twice)?"),
+            m_className
+        )
+    );
 
     sm_classTable->Put(m_className, (wxObject *)this);
 }