]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/wincmn.cpp
pc 2 mac conversion for file operations
[wxWidgets.git] / src / common / wincmn.cpp
index fe662701f14a8a3d1d33ff6b1c51a0cebd3ed711..383c61e8fa112b6d18a7f86ae65e77a1db9c0680 100644 (file)
@@ -156,10 +156,6 @@ void wxWindowBase::InitBase()
     m_exStyle =
     m_windowStyle = 0;
 
-    // an optimization for the event processing: checking this flag is much
-    // faster than using IsKindOf(CLASSINFO(wxWindow))
-    m_isWindow = TRUE;
-
 #if wxUSE_CONSTRAINTS
     // no constraints whatsoever
     m_constraints = (wxLayoutConstraints *) NULL;
@@ -210,11 +206,6 @@ bool wxWindowBase::CreateBase(wxWindowBase *parent,
                               const wxValidator& validator,
                               const wxString& name)
 {
-    // m_isWindow is set to TRUE in wxWindowBase::Init() as well as many other
-    // member variables - check that it has been called (will catch the case
-    // when a new ctor is added which doesn't call InitWindow)
-    wxASSERT_MSG( m_isWindow, wxT("Init() must have been called before!") );
-
 #if wxUSE_STATBOX
     // wxGTK doesn't allow to create controls with static box as the parent so
     // this will result in a crash when the program is ported to wxGTK so warn