From fa3d9b4e301af1e236acefd3d02ee6f3d3ae18d0 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 30 Aug 2002 15:10:59 +0000 Subject: [PATCH] don't disable top level children in parents Enable() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16867 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/window.cpp | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/msw/window.cpp b/src/msw/window.cpp index 62fd946240..3acb8366a9 100644 --- a/src/msw/window.cpp +++ b/src/msw/window.cpp @@ -506,10 +506,16 @@ bool wxWindowMSW::Enable(bool enable) // well but when it is enabled back, only those of the children which // hadn't been already disabled in the beginning should be enabled again, // so we have to keep the list of those children - wxWindowList::Node *node = GetChildren().GetFirst(); - while ( node ) + for ( wxWindowList::Node *node = GetChildren().GetFirst(); + node; + node = node->GetNext() ) { wxWindow *child = node->GetData(); + if ( child->IsTopLevel() ) + { + // the logic below doesn't apply to top level children + continue; + } if ( enable ) { @@ -534,8 +540,6 @@ bool wxWindowMSW::Enable(bool enable) m_childrenDisabled->Append(child); } } - - node = node->GetNext(); } if ( enable && m_childrenDisabled ) -- 2.45.2