Commit 0164bffd authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

riched20: Fix typo.

parent ca681835
...@@ -1642,8 +1642,8 @@ static int ME_CalculateClickCount(HWND hWnd, UINT msg, WPARAM wParam, ...@@ -1642,8 +1642,8 @@ static int ME_CalculateClickCount(HWND hWnd, UINT msg, WPARAM wParam,
clickMsg.wParam = wParam; clickMsg.wParam = wParam;
clickMsg.lParam = lParam; clickMsg.lParam = lParam;
clickMsg.time = GetMessageTime(); clickMsg.time = GetMessageTime();
clickMsg.pt.x = LOWORD(lParam); clickMsg.pt.x = (short)LOWORD(lParam);
clickMsg.pt.x = HIWORD(lParam); clickMsg.pt.y = (short)HIWORD(lParam);
if ((clickNum != 0) && if ((clickNum != 0) &&
(clickMsg.message == prevClickMsg.message) && (clickMsg.message == prevClickMsg.message) &&
(clickMsg.hwnd == prevClickMsg.hwnd) && (clickMsg.hwnd == prevClickMsg.hwnd) &&
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment