Changeset 1572 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Nov 3, 1999, 7:00:29 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r1542 r1572 1 /* $Id: win32wbase.cpp,v 1.7 2 1999-11-02 17:07:25cbratschi Exp $ */1 /* $Id: win32wbase.cpp,v 1.73 1999-11-03 18:00:27 cbratschi Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 135 135 fFirstShow = TRUE; 136 136 fIsDialog = FALSE; 137 fIsModalDialogOwner = FALSE; 138 OS2HwndModalDialog = 0; 137 139 fInternalMsg = FALSE; 138 140 fNoSizeMsg = FALSE; … … 213 215 } 214 216 } 215 else 217 else 216 218 if(fDestroyAll) { 217 219 dprintf(("Destroying window %x %s", getWindowHandle(), windowNameA)); 218 220 setParent(NULL); //or else we'll crash in the dtor of the ChildWindow class 219 221 } … … 433 435 if(WIDGETS_IsControl(this, BUTTON_CONTROL) && ((dwStyle & 0x0f) == BS_GROUPBOX)) 434 436 { 435 436 437 } 438 else 437 hwndLinkAfter = HWND_BOTTOM; 438 dwStyle |= WS_CLIPSIBLINGS; 439 } 440 else 439 441 if(WIDGETS_IsControl(this, STATIC_CONTROL) && !(dwStyle & WS_GROUP)) { 440 442 dwStyle |= WS_CLIPSIBLINGS; 441 443 } 442 444 … … 1992 1994 /* We can't activate a child window (WINE) */ 1993 1995 if(getStyle() & WS_CHILD) 1994 1996 showstate &= ~SWPOS_ACTIVATE; 1995 1997 1996 1998 if(showstate & SWPOS_SHOW) {
Note:
See TracChangeset
for help on using the changeset viewer.