From 55a09e19144cdfd2cc42e6de25a57c0f61fe17b4 Mon Sep 17 00:00:00 2001 From: Thomas Bluemel Date: Tue, 27 Jan 2004 09:36:14 +0000 Subject: [PATCH] release window object when destroying window children and skip only children that have a different parent window (instead of owner window because controls do not have a window owner) svn path=/trunk/; revision=7887 --- reactos/subsys/win32k/ntuser/window.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/reactos/subsys/win32k/ntuser/window.c b/reactos/subsys/win32k/ntuser/window.c index 4ee4f6d77b2..404da1b3399 100644 --- a/reactos/subsys/win32k/ntuser/window.c +++ b/reactos/subsys/win32k/ntuser/window.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: window.c,v 1.178 2004/01/27 08:29:28 weiden Exp $ +/* $Id: window.c,v 1.179 2004/01/27 09:36:14 weiden Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -1576,8 +1576,9 @@ NtUserDestroyWindow(HWND Wnd) { continue; } - if (Child->Owner != Window) + if (Child->Parent != Window) { + IntReleaseWindowObject(Child); continue; } if (IntWndBelongsToThread(Child, PsGetWin32Thread()))