Changeset 8101 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Mar 18, 2002, 4:26:30 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r8042 r8101 1 /* $Id: win32wbase.cpp,v 1.31 6 2002-03-07 19:41:18sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.317 2002-03-18 15:26:30 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 2653 2653 wndpl->ptMaxPosition = windowpos.ptMaxPosition; 2654 2654 //Must be in parent coordinates (or screen if no parent); verified in NT4, SP6 2655 wndpl->rcNormalPosition = rectWindow;2655 wndpl->rcNormalPosition = windowpos.rcNormalPosition; 2656 2656 2657 2657 return TRUE; … … 3348 3348 BOOL Win32BaseWindow::CloseWindow() 3349 3349 { 3350 return OSLibWinMinimizeWindow(getOS2FrameWindowHandle()); 3350 if (::GetWindowLongW( getWindowHandle() , GWL_STYLE ) & WS_CHILD) return FALSE; 3351 ShowWindow( SW_MINIMIZE ); 3352 return TRUE; 3351 3353 } 3352 3354 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.