Changeset 3610 for trunk/src/user32/oslibmsgtranslate.cpp
- Timestamp:
- May 26, 2000, 8:43:35 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/oslibmsgtranslate.cpp
r3603 r3610 1 /* $Id: oslibmsgtranslate.cpp,v 1.3 1 2000-05-24 19:30:05sandervl Exp $ */1 /* $Id: oslibmsgtranslate.cpp,v 1.32 2000-05-26 18:43:33 sandervl Exp $ */ 2 2 /* 3 3 * Window message translation functions for OS/2 … … 521 521 winMsg->lParam = MAKELONG(ClientPoint.x, ClientPoint.y); //client coordinates 522 522 } 523 if( ISMOUSE_CAPTURED())523 if((fMsgRemoved == MSG_REMOVE) && ISMOUSE_CAPTURED()) 524 524 { 525 525 if(DInputMouseHandler(win32wnd->getWindowHandle(), winMsg->message, winMsg->pt.x, winMsg->pt.y)) { … … 575 575 winMsg->lParam = MAKELONG(SHORT1FROMMP(os2Msg->mp1),mapY(win32wnd,SHORT2FROMMP(os2Msg->mp1))); 576 576 } 577 if( ISMOUSE_CAPTURED())577 if((fMsgRemoved == MSG_REMOVE) && ISMOUSE_CAPTURED()) 578 578 { 579 579 if(DInputMouseHandler(win32wnd->getWindowHandle(), winMsg->message, winMsg->pt.x, winMsg->pt.y)) { … … 767 767 } 768 768 } 769 if( ISKDB_CAPTURED())769 if((fMsgRemoved == MSG_REMOVE) && ISKDB_CAPTURED()) 770 770 { 771 771 if(DInputKeyBoardHandler(winMsg)) {
Note:
See TracChangeset
for help on using the changeset viewer.