Changeset 2378 for trunk/src/user32/oslibmenu.cpp
- Timestamp:
- Jan 8, 2000, 5:53:38 PM (26 years ago)
- 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:06sandervl Exp $ */1 /* $Id: oslibmenu.cpp,v 1.7 2000-01-08 16:53:38 sandervl Exp $ */ 2 2 /* 3 3 * Window Menu wrapper functions for OS/2 … … 62 62 HMENU OSLibWinCreateMenu(PVOID menutemplate) 63 63 { 64 64 return (HMENU)WinCreateMenu(HWND_OBJECT, menutemplate); 65 65 } 66 66 //****************************************************************************** … … 98 98 pRect->left = rectl.xLeft; 99 99 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); 102 102 return TRUE; 103 103 }
Note:
See TracChangeset
for help on using the changeset viewer.