Changeset 5606 for trunk/src/user32/oslibmsgtranslate.cpp
- Timestamp:
- Apr 27, 2001, 7:36:39 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/oslibmsgtranslate.cpp
r5586 r5606 1 /* $Id: oslibmsgtranslate.cpp,v 1.4 7 2001-04-25 20:53:38sandervl Exp $ */1 /* $Id: oslibmsgtranslate.cpp,v 1.48 2001-04-27 17:36:37 sandervl Exp $ */ 2 2 /* 3 3 * Window message translation functions for OS/2 … … 387 387 //WM_NC*BUTTON* is posted when the cursor is in a non-client area of the window 388 388 389 dprintf(("button (%d,%d)", winMsg->pt.x, winMsg->pt.y)); 389 390 #ifdef ODIN_HITTEST 390 391 HWND hwnd; … … 475 476 HWND hwnd; 476 477 478 dprintf2(("WM_NCMOUSEMOVE (%d,%d)", winMsg->pt.x, winMsg->pt.y)); 477 479 DisableLogging(); 478 480 if(GetCapture() != winMsg->hwnd) … … 532 534 if(fWasDisabled) { 533 535 if(win32wnd) { 534 536 winMsg->hwnd = win32wnd->getWindowHandle(); 535 537 } 536 else goto dummymessage; //don't send mouse messages to disabled windows 538 else { 539 goto dummymessage; //don't send mouse messages to disabled windows 540 } 537 541 } 538 542 //OS/2 Window coordinates -> Win32 Window coordinates … … 814 818 default: 815 819 dummymessage: 820 dprintf2(("dummy message %x %x %x %x", os2Msg->hwnd, os2Msg->msg, os2Msg->mp1, os2Msg->mp2)); 816 821 winMsg->message = 0; 817 822 winMsg->wParam = 0;
Note:
See TracChangeset
for help on using the changeset viewer.