Ignore:
Timestamp:
Oct 3, 1999, 10:38:02 PM (26 years ago)
Author:
sandervl
Message:

mouse dragging fix + updated isMdiClient code/headers

File:
1 edited

Legend:

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

    r1094 r1114  
    1 /* $Id: pmwindow.cpp,v 1.13 1999-09-29 09:31:18 dengert Exp $ */
     1/* $Id: pmwindow.cpp,v 1.14 1999-10-03 20:38:01 sandervl Exp $ */
    22/*
    33 * Win32 Window Managment Code for OS/2
     
    534534    case WM_MOUSEMOVE:
    535535    {
    536     //Only send this message when the mouse isn't captured
    537         if(WinQueryCapture(HWND_DESKTOP) != NULLHANDLE) {
    538                 goto RunDefWndProc;
    539         }
    540536        ULONG keystate = 0;
    541537        if(WinGetKeyState(HWND_DESKTOP, VK_BUTTON1))
     
    551547
    552548        //OS/2 Window coordinates -> Win32 Window coordinates
    553     //NOTE: Do not call the default OS/2 window handler as that one changes
     549        //NOTE: Do not call the default OS/2 window handler as that one changes
    554550        //      the mousepointer!
    555551        win32wnd->MsgMouseMove(keystate, SHORT1FROMMP(mp1), MapOS2ToWin32Y(win32wnd, SHORT2FROMMP(mp1)));
Note: See TracChangeset for help on using the changeset viewer.