mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[WIN32K]
Fix MSVC build. svn path=/trunk/; revision=54639
This commit is contained in:
parent
388f6d13c8
commit
df57cb5880
1 changed files with 6 additions and 5 deletions
|
@ -632,6 +632,7 @@ IntDispatchMessage(PMSG pMsg)
|
|||
LRESULT retval = 0;
|
||||
PTHREADINFO pti;
|
||||
PWND Window = NULL;
|
||||
HRGN hrgn;
|
||||
|
||||
if (pMsg->hwnd)
|
||||
{
|
||||
|
@ -705,7 +706,7 @@ IntDispatchMessage(PMSG pMsg)
|
|||
{
|
||||
Window->state2 &= ~WNDS2_WMPAINTSENT;
|
||||
/* send a WM_NCPAINT and WM_ERASEBKGND if the non-client area is still invalid */
|
||||
HRGN hrgn = IntSysCreateRectRgn( 0, 0, 0, 0 );
|
||||
hrgn = IntSysCreateRectRgn( 0, 0, 0, 0 );
|
||||
co_UserGetUpdateRgn( Window, hrgn, TRUE );
|
||||
GreDeleteObject(hrgn);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue