Ignore:
Timestamp:
May 26, 2000, 8:43:35 PM (25 years ago)
Author:
sandervl
Message:

Tasklist fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/oslibmsgtranslate.cpp

    r3603 r3610  
    1 /* $Id: oslibmsgtranslate.cpp,v 1.31 2000-05-24 19:30:05 sandervl Exp $ */
     1/* $Id: oslibmsgtranslate.cpp,v 1.32 2000-05-26 18:43:33 sandervl Exp $ */
    22/*
    33 * Window message translation functions for OS/2
     
    521521            winMsg->lParam  = MAKELONG(ClientPoint.x, ClientPoint.y); //client coordinates
    522522        }
    523         if(ISMOUSE_CAPTURED())
     523        if((fMsgRemoved == MSG_REMOVE) && ISMOUSE_CAPTURED())
    524524        {
    525525            if(DInputMouseHandler(win32wnd->getWindowHandle(), winMsg->message, winMsg->pt.x, winMsg->pt.y)) {
     
    575575          winMsg->lParam  = MAKELONG(SHORT1FROMMP(os2Msg->mp1),mapY(win32wnd,SHORT2FROMMP(os2Msg->mp1)));
    576576        }
    577         if(ISMOUSE_CAPTURED())
     577        if((fMsgRemoved == MSG_REMOVE) && ISMOUSE_CAPTURED())
    578578        {
    579579            if(DInputMouseHandler(win32wnd->getWindowHandle(), winMsg->message, winMsg->pt.x, winMsg->pt.y)) {
     
    767767            }
    768768        }
    769         if(ISKDB_CAPTURED())
     769        if((fMsgRemoved == MSG_REMOVE) && ISKDB_CAPTURED())
    770770        {
    771771            if(DInputKeyBoardHandler(winMsg)) {
Note: See TracChangeset for help on using the changeset viewer.