mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 23:03:00 +00:00
Pass PWINDOW_OBJECT instead of HANDLE in call to W32kGetClientRect
svn path=/trunk/; revision=4337
This commit is contained in:
parent
cc078531ba
commit
c5c4fcd810
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: painting.c,v 1.8 2003/01/24 22:42:15 jfilby Exp $
|
/* $Id: painting.c,v 1.9 2003/03/18 08:33:27 gvg Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -492,7 +492,7 @@ PaintRedrawWindow(HWND hWnd, const RECT* UpdateRect, HRGN UpdateRgn,
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
W32kGetClientRect(hWnd, &Rect2);
|
W32kGetClientRect(Window, &Rect2);
|
||||||
hRgn = UnsafeW32kCreateRectRgnIndirect(&Rect2);
|
hRgn = UnsafeW32kCreateRectRgnIndirect(&Rect2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue