From 6d1b9112dcddb9660c92b2734de003623498cf98 Mon Sep 17 00:00:00 2001 From: Gilles Depeyrot Date: Fri, 10 May 2002 19:01:47 +0000 Subject: [PATCH] removed test supposed to detect lazy binding issues since it breaks loading of dynamic modules git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15489 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/object.h | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/include/wx/object.h b/include/wx/object.h index 6f5c68ce87..dc7a6a729e 100644 --- a/include/wx/object.h +++ b/include/wx/object.h @@ -72,16 +72,7 @@ public: , m_baseInfo1(0) , m_baseInfo2(0) , m_next(sm_first) - { -#ifdef __WXDEBUG__ - if (sm_classTable != NULL) { - wxString msg(_T("too late binding of class info (lazy binding) for ")); - msg += className; - wxFAIL_MSG(msg); - } -#endif - sm_first = this; - } + { sm_first = this; } wxObject *CreateObject() { return m_objectConstructor ? (*m_objectConstructor)() : 0; } -- 2.45.2