]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/object.cpp
Applied [ 1235509 ] wxCocoa unicode wxT("fixes")
[wxWidgets.git] / src / common / object.cpp
index 25e6b04650d1b46e3af76136cf61eaa023d67c54..9dfaeafb621002c2f20da1c5ef66c261eb13e411 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() multiple times or linked some object file twice)?"),
+            m_className
+        )
+    );
 
     sm_classTable->Put(m_className, (wxObject *)this);
 }