Module: wine Branch: master Commit: cba723836410bbd52b7b6af58db5d80331135b42 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=cba723836410bbd52b7b6af5...
Author: Matt Finnicum mattfinn@gmail.com Date: Sat Aug 19 16:04:49 2006 -0500
riched20: Swap two lines that were in wrong order / caused notification not to be sent.
---
dlls/riched20/editor.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/riched20/editor.c b/dlls/riched20/editor.c index 048c892..95d11dc 100644 --- a/dlls/riched20/editor.c +++ b/dlls/riched20/editor.c @@ -2303,8 +2303,8 @@ LRESULT WINAPI RichEditANSIWndProc(HWND 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();