mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
small fix
svn path=/trunk/; revision=7122
This commit is contained in:
parent
964636c2ab
commit
83d245a222
1 changed files with 5 additions and 1 deletions
|
@ -16,7 +16,7 @@
|
|||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*
|
||||
* $Id: painting.c,v 1.47 2003/12/14 11:36:43 gvg Exp $
|
||||
* $Id: painting.c,v 1.48 2003/12/18 21:42:38 weiden Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -356,6 +356,10 @@ IntInvalidateWindows(PWINDOW_OBJECT Window, HRGN hRgn, ULONG Flags,
|
|||
for (phWnd = List; *phWnd; ++phWnd)
|
||||
{
|
||||
Child = IntGetWindowObject(*phWnd);
|
||||
if(!Child)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
if ((Child->Style & (WS_VISIBLE | WS_MINIMIZE)) == WS_VISIBLE)
|
||||
{
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue