Ignore:
Timestamp:
Jan 9, 2000, 3:14:25 PM (26 years ago)
Author:
cbratschi
Message:

scrollbar support and many other things

File:
1 edited

Legend:

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

    r2379 r2381  
    1 /* $Id: oslibmsgtranslate.cpp,v 1.8 2000-01-08 17:08:56 sandervl Exp $ */
     1/* $Id: oslibmsgtranslate.cpp,v 1.9 2000-01-09 14:14:23 cbratschi Exp $ */
    22/*
    33 * Window message translation functions for OS/2
     
    144144  }
    145145  winMsg->time = os2Msg->time;
    146   winMsg->pt.x = os2Msg->ptl.x;
     146  //CB: PM bug or undocumented feature? ptl.x highword is set!
     147  winMsg->pt.x = os2Msg->ptl.x & 0xFFFF;
    147148  winMsg->pt.y = mapScreenY(os2Msg->ptl.y);
    148149
Note: See TracChangeset for help on using the changeset viewer.