Ignore:
Timestamp:
Jan 8, 2000, 5:53:38 PM (26 years ago)
Author:
sandervl
Message:

Message translation bugfixes

File:
1 edited

Legend:

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

    r2371 r2378  
    1 /* $Id: oslibmenu.cpp,v 1.6 2000-01-08 14:15:06 sandervl Exp $ */
     1/* $Id: oslibmenu.cpp,v 1.7 2000-01-08 16:53:38 sandervl Exp $ */
    22/*
    33 * Window Menu wrapper functions for OS/2
     
    6262HMENU OSLibWinCreateMenu(PVOID menutemplate)
    6363{
    64     return (HMENU)WinCreateMenu(HWND_OBJECT, menutemplate);
     64   return (HMENU)WinCreateMenu(HWND_OBJECT, menutemplate);
    6565}
    6666//******************************************************************************
     
    9898   pRect->left  = rectl.xLeft;
    9999   pRect->right = rectl.xRight;
    100    pRect->top   = OSLibQueryScreenHeight() - rectl.yTop;
    101    pRect->bottom= OSLibQueryScreenHeight() - rectl.yBottom;
     100   pRect->top   = mapScreenY(rectl.yTop);
     101   pRect->bottom= mapScreenY(rectl.yBottom);
    102102   return TRUE;
    103103}
Note: See TracChangeset for help on using the changeset viewer.