Remove WS_VISIBLE bit from correct member

svn path=/trunk/; revision=17758
This commit is contained in:
Gé van Geldorp 2005-09-09 09:48:33 +00:00
parent 02471b01a7
commit 704232a50f

View file

@ -344,7 +344,7 @@ static LRESULT co_IntDestroyWindow(PWINDOW_OBJECT Window,
return 0; return 0;
} }
Window->Status |= WINDOWSTATUS_DESTROYING; Window->Status |= WINDOWSTATUS_DESTROYING;
Window->Flags &= ~WS_VISIBLE; Window->Style &= ~WS_VISIBLE;
/* remove the window already at this point from the thread window list so we /* remove the window already at this point from the thread window list so we
don't get into trouble when destroying the thread windows while we're still don't get into trouble when destroying the thread windows while we're still
in IntDestroyWindow() */ in IntDestroyWindow() */