- Timestamp:
- Dec 29, 2002, 6:17:16 PM (23 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/menu.cpp
r9491 r9563 1 /* $Id: menu.cpp,v 1.5 3 2002-12-12 13:55:41sandervl Exp $*/1 /* $Id: menu.cpp,v 1.54 2002-12-29 17:17:15 sandervl Exp $*/ 2 2 /* 3 3 * Menu functions … … 1511 1511 { 1512 1512 OffsetRect(&lppop->items[i].rect,-lprect->left,-lprect->top); 1513 MENU_DrawMenuItem( hwnd,GetMenu(hwnd), GetWindow(hwnd,GW_OWNER),1513 MENU_DrawMenuItem( hwnd,GetMenu(hwnd), hwnd, 1514 1514 memDC, &lppop->items[i], lppop->Height, TRUE, ODA_DRAWENTIRE ); 1515 1515 OffsetRect(&lppop->items[i].rect,lprect->left,lprect->top); -
trunk/src/user32/oslibwin.cpp
r9463 r9563 1 /* $Id: oslibwin.cpp,v 1.13 0 2002-12-04 15:23:38sandervl Exp $ */1 /* $Id: oslibwin.cpp,v 1.131 2002-12-29 17:17:16 sandervl Exp $ */ 2 2 /* 3 3 * Window API wrappers for OS/2 … … 162 162 static int minmaxwidth = 0; 163 163 static int minmaxheight = 0; 164 165 dprintf(("OSLibWinPositionFrameControls %x (%x,%x) %x %d", hwndFrame, dwStyle, dwExStyle, hSysMenuIcon, drawCloseButton)); 164 166 165 167 if(minmaxwidth == 0) { … … 1098 1100 BOOL OSLibChangeCloseButtonState(HWND hwndFrame, BOOL State) 1099 1101 { 1102 dprintf(("OSLibChangeCloseButtonState %x %d", hwndFrame, State)); 1100 1103 return WinEnableMenuItem(WinWindowFromID(hwndFrame, FID_SYSMENU), SC_CLOSE, State); 1101 1104 } -
trunk/src/user32/win32wbasenonclient.cpp
r9345 r9563 1 /* $Id: win32wbasenonclient.cpp,v 1.4 4 2002-10-15 09:18:12sandervl Exp $ */1 /* $Id: win32wbasenonclient.cpp,v 1.45 2002-12-29 17:17:16 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 (non-client methods) … … 1067 1067 dprintf(("DoNCPaint %x %x %d", getWindowHandle(), clip, suppress_menupaint)); 1068 1068 1069 if ( getStyle() & WS_MINIMIZE || 1070 !IsWindowVisible( getWindowHandle() )) { 1071 return; /* Nothing to do */ 1072 } 1073 1069 1074 rect.top = rect.left = 0; 1070 1075 rect.right = rectWindow.right - rectWindow.left;
Note:
See TracChangeset
for help on using the changeset viewer.