WM_MOUSEMOVE correction

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4658 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1999-11-23 10:53:39 +00:00
parent 41404da71e
commit e2b34251cb
6 changed files with 36 additions and 18 deletions

View File

@@ -1836,6 +1836,13 @@ long wxWindow::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam)
break;
case WM_MOUSEMOVE:
{
short x = LOWORD(lParam);
short y = HIWORD(lParam);
processed = HandleMouseMove(x, y, wParam);
break;
}
case WM_LBUTTONDOWN:
case WM_LBUTTONUP:
case WM_LBUTTONDBLCLK: