From cba723836410bbd52b7b6af58db5d80331135b42 Mon Sep 17 00:00:00 2001 From: Matt Finnicum Date: Sat, 19 Aug 2006 16:04:49 -0500 Subject: [PATCH] riched20: Swap two lines that were in wrong order / caused notification not to be sent. --- dlls/riched20/editor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/riched20/editor.c b/dlls/riched20/editor.c index 048c892170..95d11dc0a0 100644 --- a/dlls/riched20/editor.c +++ b/dlls/riched20/editor.c @@ -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();