Changeset 3565 for trunk/src


Ignore:
Timestamp:
May 19, 2000, 3:09:00 PM (25 years ago)
Author:
sandervl
Message:

YD: Don't send WM_PARENTNOTIFY to windows that have received WM_DESTROY

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/win32wbase.cpp

    r3525 r3565  
    1 /* $Id: win32wbase.cpp,v 1.187 2000-05-12 18:09:42 sandervl Exp $ */
     1/* $Id: win32wbase.cpp,v 1.188 2000-05-19 13:09:00 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    759759        if((getStyle() & WS_CHILD) && !(getExStyle() & WS_EX_NOPARENTNOTIFY))
    760760        {
    761             if(getParent())
     761            if(getParent() && getParent()->IsWindowDestroyed() == FALSE)
    762762            {
    763763                    /* Notify the parent window only */
     
    20412041    dprintf(("ShowWindow %x %x", getWindowHandle(), nCmdShow));
    20422042
    2043     if(getWindowHandle() == 0x68000002) {
    2044 //      DebugInt3();
    2045     }
    20462043    switch(nCmdShow)
    20472044    {
Note: See TracChangeset for help on using the changeset viewer.