From: Vadim Zeitlin Date: Thu, 1 Sep 2005 21:29:18 +0000 (+0000) Subject: corrected typo and changed wording of an assert X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f730d32b0fbdab979b3cae1cd000e2233ef7c37e corrected typo and changed wording of an assert git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35405 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/object.cpp b/src/common/object.cpp index 31373d34b4..9dfaeafb62 100644 --- a/src/common/object.cpp +++ b/src/common/object.cpp @@ -238,7 +238,7 @@ void wxClassInfo::Register() wxASSERT_MSG( sm_classTable->Get(m_className) == NULL, 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)?"), + _T("Class \"%s\" already in RTTI table - have you used IMPLEMENT_DYNAMIC_CLASS() multiple times or linked some object file twice)?"), m_className ) );