Changeset 9345 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Oct 15, 2002, 11:18:12 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r9342 r9345 1 /* $Id: win32wbase.cpp,v 1.34 1 2002-10-11 14:58:36sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.342 2002-10-15 09:18:10 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 1360 1360 { 1361 1361 RECT rect = {0}; 1362 BOOL fCloseButton; 1363 1364 fCloseButton = !(windowClass && (windowClass->getClassLongA(GCL_STYLE) & CS_NOCLOSE)); 1365 1362 1366 int height = getWindowHeight(); 1363 1367 RECTLOS2 rectOS2; … … 1373 1377 rectOS2.yBottom = height - rect.top; 1374 1378 rectOS2.yTop = height - rect.bottom; 1375 OSLibWinPositionFrameControls(getOS2FrameWindowHandle(), &rectOS2, dwStyle, dwExStyle, IconForWindow(ICON_SMALL)); 1379 1380 //@@PF Disable close button as well when needed by application 1381 OSLibChangeCloseButtonState(getOS2FrameWindowHandle(), fCloseButton); 1382 OSLibWinPositionFrameControls(getOS2FrameWindowHandle(), &rectOS2, 1383 dwStyle, dwExStyle, IconForWindow(ICON_SMALL), 1384 fCloseButton); 1376 1385 } 1377 1386 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.