]> git.saurik.com Git - wxWidgets.git/commitdiff
removed test supposed to detect lazy binding issues since it breaks
authorGilles Depeyrot <gilles_depeyrot@mac.com>
Fri, 10 May 2002 19:01:47 +0000 (19:01 +0000)
committerGilles Depeyrot <gilles_depeyrot@mac.com>
Fri, 10 May 2002 19:01:47 +0000 (19:01 +0000)
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

index 6f5c68ce8723df78dfb64ee013ea038a26532c4c..dc7a6a729e4d2aa8b56182d0c314cbba68db009c 100644 (file)
@@ -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; }