Changeset 3365 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Apr 10, 2000, 9:42:38 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r3341 r3365 1 /* $Id: win32wbase.cpp,v 1.17 7 2000-04-07 12:55:16sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.178 2000-04-10 19:40:45 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 94 94 fTaskList = FALSE; 95 95 fParentDC = FALSE; 96 fComingToTop = FALSE; 96 97 97 98 windowNameA = NULL; … … 158 159 Win32BaseWindow::~Win32BaseWindow() 159 160 { 161 OSLibWinSetVisibleRegionNotify(OS2HwndFrame, FALSE); 160 162 OSLibWinSetWindowULong(OS2Hwnd, OFFSET_WIN32WNDPTR, 0); 161 163 OSLibWinSetWindowULong(OS2Hwnd, OFFSET_WIN32PM_MAGIC, 0); … … 494 496 495 497 OSLibWinConvertStyle(dwStyle,dwExStyle,&dwOSWinStyle); 498 #if 0 499 if(((dwStyle & (WS_CAPTION|WS_POPUP)) == WS_CAPTION) && (getParent() == NULL || getParent() == windowDesktop)) { 500 fTaskList = TRUE; 501 } 502 #else 496 503 if (((dwStyle & (WS_CAPTION | WS_SYSMENU | 0xC0000000)) == (WS_CAPTION | WS_SYSMENU))) fTaskList = TRUE; 504 #endif 497 505 498 506 OS2Hwnd = OSLibWinCreateWindow((getParent()) ? getParent()->getOS2WindowHandle() : OSLIB_HWND_DESKTOP, … … 506 514 return FALSE; 507 515 } 516 OSLibWinSetVisibleRegionNotify(OS2HwndFrame, TRUE); 508 517 509 518 SetLastError(0);
Note:
See TracChangeset
for help on using the changeset viewer.