Changeset 12280


Ignore:
Timestamp:
Nov 10, 1999, 9:02:48 PM (25 years ago)
Author:
sandervl
Message:

WM_MOUSEMOVE fix

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 cbratschi Exp $ */
     1/* $Id: win32wbase.cpp,v 1.80 1999-11-10 20:02:48 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    11511151
    11521152    if(ISMOUSE_CAPTURED()) {
    1153     POINT point = {x,y};
     1153        POINT point = {x,y};
    11541154
    11551155        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;
    11581158    }
    11591159
     
    11791179            SendInternalMessageA(WM_NCMOUSEMOVE, lastHitTestVal, MAKELONG(x, y));
    11801180    }
    1181     return  SendInternalMessageA(WM_MOUSEMOVE, keystate, MAKELONG(x, y));
     1181    return  SendInternalMessageA(WM_MOUSEMOVE, winstate, MAKELONG(x, y));
    11821182}
    11831183//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.