From a239c99e561dd64f36ebe2ddee8b436c1d01a6f2 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Fri, 17 Apr 2015 07:03:37 +0000 Subject: [PATCH] [WIN32K:NTUSER] - Correctly check for WS_EX_NOPARENTNOTIFY in IntSendParentNotify. Patch by Andreas Maier. CORE-9538 #resolve svn path=/trunk/; revision=67221 --- reactos/win32ss/user/ntuser/window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/win32ss/user/ntuser/window.c b/reactos/win32ss/user/ntuser/window.c index 7304964902d..c4abda900d4 100644 --- a/reactos/win32ss/user/ntuser/window.c +++ b/reactos/win32ss/user/ntuser/window.c @@ -1463,7 +1463,7 @@ NtUserBuildHwndList( static void IntSendParentNotify( PWND pWindow, UINT msg ) { if ( (pWindow->style & (WS_CHILD | WS_POPUP)) == WS_CHILD && - !(pWindow->style & WS_EX_NOPARENTNOTIFY)) + !(pWindow->ExStyle & WS_EX_NOPARENTNOTIFY)) { if (VerifyWnd(pWindow->spwndParent) && pWindow->spwndParent != UserGetDesktopWindow()) {