riched20: Swap two lines that were in wrong order / caused notification not to be sent.

This commit is contained in:
Matt Finnicum 2006-08-19 16:04:49 -05:00 committed by Alexandre Julliard
parent bfa5967366
commit cba7238364
1 changed files with 1 additions and 1 deletions

View File

@ -2303,8 +2303,8 @@ LRESULT WINAPI RichEditANSIWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lP
case WM_MOUSEMOVE:
if (GetCapture() == hWnd)
ME_MouseMove(editor, (short)LOWORD(lParam), (short)HIWORD(lParam));
break;
ME_LinkNotify(editor,msg,wParam,lParam);
break;
case WM_LBUTTONUP:
if (GetCapture() == hWnd)
ReleaseCapture();