winefile: Fix incorrect use of the ScreenToClient function.

This commit is contained in:
Alexandre Julliard 2010-10-05 14:02:41 +02:00
parent 22b7fedff5
commit d1f8eb49fe
1 changed files with 2 additions and 4 deletions

View File

@ -2019,8 +2019,7 @@ static BOOL toggle_fullscreen(HWND hwnd)
g_fullscreen.wasZoomed = IsZoomed(hwnd);
Frame_CalcFrameClient(hwnd, &rt);
ClientToScreen(hwnd, (LPPOINT)&rt.left);
ClientToScreen(hwnd, (LPPOINT)&rt.right);
MapWindowPoints( hwnd, 0, (POINT *)&rt, 2 );
rt.left = g_fullscreen.orgPos.left-rt.left;
rt.top = g_fullscreen.orgPos.top-rt.top;
@ -2046,8 +2045,7 @@ static void fullscreen_move(HWND hwnd)
GetWindowRect(hwnd, &pos);
Frame_CalcFrameClient(hwnd, &rt);
ClientToScreen(hwnd, (LPPOINT)&rt.left);
ClientToScreen(hwnd, (LPPOINT)&rt.right);
MapWindowPoints( hwnd, 0, (POINT *)&rt, 2 );
rt.left = pos.left-rt.left;
rt.top = pos.top-rt.top;