X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d9f0e932248baa45e8e86686581b31e69554307e..2e11bb424c946b702a17f121539c28d692a2ae00:/src/common/object.cpp diff --git a/src/common/object.cpp b/src/common/object.cpp index 25e6b04650..9dfaeafb62 100644 --- a/src/common/object.cpp +++ b/src/common/object.cpp @@ -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); }