Changeset 5586 for trunk/src/user32/oslibmsgtranslate.cpp
- Timestamp:
- Apr 25, 2001, 10:53:39 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/oslibmsgtranslate.cpp
r5435 r5586 1 /* $Id: oslibmsgtranslate.cpp,v 1.4 6 2001-04-02 09:52:01sandervl Exp $ */1 /* $Id: oslibmsgtranslate.cpp,v 1.47 2001-04-25 20:53:38 sandervl Exp $ */ 2 2 /* 3 3 * Window message translation functions for OS/2 … … 366 366 winMsg->wParam = 0; 367 367 winMsg->lParam = MAKELONG(winMsg->pt.x,winMsg->pt.y); 368 if(! win32wnd->IsWindowEnabled()) {368 if(!IsWindowEnabled(win32wnd->getWindowHandle())) { 369 369 if(win32wnd->getParent()) { 370 370 winMsg->hwnd = win32wnd->getParent()->getWindowHandle(); … … 407 407 408 408 //if a window is disabled, it's parent receives the mouse messages 409 if(! win32wnd->IsWindowEnabled()) {409 if(!IsWindowEnabled(win32wnd->getWindowHandle())) { 410 410 if(win32wnd->getParent()) { 411 411 win32wnd = win32wnd->getParent(); … … 492 492 493 493 //if a window is disabled, it's parent receives the mouse messages 494 if(! win32wnd->IsWindowEnabled()) {494 if(!IsWindowEnabled(win32wnd->getWindowHandle())) { 495 495 if(win32wnd->getParent()) { 496 496 win32wnd = win32wnd->getParent();
Note:
See TracChangeset
for help on using the changeset viewer.