mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 01:35:47 +00:00
[WIN32K:NTUSER]
- Correctly check for WS_EX_NOPARENTNOTIFY in IntSendParentNotify. Patch by Andreas Maier. CORE-9538 #resolve svn path=/trunk/; revision=67221
This commit is contained in:
parent
a64a682051
commit
a239c99e56
1 changed files with 1 additions and 1 deletions
|
@ -1463,7 +1463,7 @@ NtUserBuildHwndList(
|
||||||
static void IntSendParentNotify( PWND pWindow, UINT msg )
|
static void IntSendParentNotify( PWND pWindow, UINT msg )
|
||||||
{
|
{
|
||||||
if ( (pWindow->style & (WS_CHILD | WS_POPUP)) == WS_CHILD &&
|
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())
|
if (VerifyWnd(pWindow->spwndParent) && pWindow->spwndParent != UserGetDesktopWindow())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue