Ignore:
Timestamp:
Jul 23, 2001, 9:16:41 PM (24 years ago)
Author:
sandervl
Message:

IsWindowVisible bugfix

File:
1 edited

Legend:

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

    r5977 r6392  
    1 /* $Id: window.cpp,v 1.100 2001-06-12 18:25:11 sandervl Exp $ */
     1/* $Id: window.cpp,v 1.101 2001-07-23 19:16:41 sandervl Exp $ */
    22/*
    33 * Win32 window apis for OS/2
     
    741741            dprintf(("IsWindowVisible %x returned FALSE (parent %x invisible)", hwnd, hwndParent));
    742742            return FALSE;
     743        }
     744        if(!(dwStyle & WS_CHILD)) {
     745            break; //GetParent can also return the owner
    743746        }
    744747        hwndParent = GetParent(hwndParent);
Note: See TracChangeset for help on using the changeset viewer.