Changeset 12280
- Timestamp:
- Nov 10, 1999, 9:02:48 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified tags/trunk/src/user32/win32wbase.cpp ¶
r12279 r12280 1 /* $Id: win32wbase.cpp,v 1. 79 1999-11-10 17:11:30 cbratschiExp $ */1 /* $Id: win32wbase.cpp,v 1.80 1999-11-10 20:02:48 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 1151 1151 1152 1152 if(ISMOUSE_CAPTURED()) { 1153 POINT point = {x,y};1153 POINT point = {x,y}; 1154 1154 1155 1155 MapWindowPoints(getWindowHandle(), HWND_DESKTOP, &point, 1); 1156 if(DInputMouseHandler(getWindowHandle(), MOUSEMSG_MOVE, point.x, point.y, keystate))1157 return 0;1156 if(DInputMouseHandler(getWindowHandle(), MOUSEMSG_MOVE, point.x, point.y, keystate)) 1157 return 0; 1158 1158 } 1159 1159 … … 1179 1179 SendInternalMessageA(WM_NCMOUSEMOVE, lastHitTestVal, MAKELONG(x, y)); 1180 1180 } 1181 return SendInternalMessageA(WM_MOUSEMOVE, keystate, MAKELONG(x, y));1181 return SendInternalMessageA(WM_MOUSEMOVE, winstate, MAKELONG(x, y)); 1182 1182 } 1183 1183 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.