mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 13:10:39 +00:00
fixing 3
This commit is contained in:
parent
c0bffdf060
commit
aeb822964d
1 changed files with 2 additions and 1 deletions
|
@ -3999,6 +3999,7 @@ protected:
|
|||
prc->bottom = prc->top + cxy;
|
||||
break;
|
||||
default:
|
||||
ASSERT(FALSE);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -4007,7 +4008,7 @@ protected:
|
|||
{
|
||||
if (!m_DesktopWnd)
|
||||
return;
|
||||
::MapWindowPoints(NULL, m_DesktopWnd, (POINT *)prc, sizeof(RECT) / sizeof(POINT));
|
||||
::MapWindowPoints(NULL, m_DesktopWnd, (POINT*)prc, sizeof(*prc) / sizeof(POINT));
|
||||
::RedrawWindow(m_DesktopWnd, prc, 0, RDW_ALLCHILDREN | RDW_ERASE | RDW_INVALIDATE);
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue