From 5aaaf343344896774379f78e95481ee5256e9fbc Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Sat, 21 Feb 2004 14:00:30 +0000 Subject: [PATCH] - Fixed my use of IntIsWindowVisible, it takes HWND as parameter and not PWINDOW_OBJECT. svn path=/trunk/; revision=8290 --- reactos/subsys/win32k/ntuser/window.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/subsys/win32k/ntuser/window.c b/reactos/subsys/win32k/ntuser/window.c index 9a0cd6dd21d..e48e37dc7d3 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.186 2004/02/21 13:13:27 navaraf Exp $ +/* $Id: window.c,v 1.187 2004/02/21 14:00:30 navaraf Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -3342,7 +3342,7 @@ static PWINDOW_OBJECT RestrictiveSearchChildWindows(PWINDOW_OBJECT Window, POINT */ if (!IsStaticClass(ChildWindow) && !IsDisabled(ChildWindow) && - IntIsWindowVisible(ChildWindow)) + IntIsWindowVisible(ChildWindow->Self)) { /* **Now find the deepest child window -- 2.17.1