Changeset 2569 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Jan 29, 2000, 9:46:52 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r2552 r2569 1 /* $Id: win32wbase.cpp,v 1.14 8 2000-01-28 22:26:00sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.149 2000-01-29 20:46:52 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 2049 2049 Win32BaseWindow *window; 2050 2050 HWND hParent = 0; 2051 BOOL fShow = FALSE, fHide = FALSE; 2051 2052 2052 2053 if (fuFlags & … … 2086 2087 #endif 2087 2088 2089 if(fuFlags & SWP_SHOWWINDOW) { 2090 fShow = TRUE; 2091 fuFlags &= ~SWP_SHOWWINDOW; 2092 } 2093 else 2094 if(fuFlags & SWP_HIDEWINDOW) { 2095 fHide = TRUE; 2096 fuFlags &= ~SWP_HIDEWINDOW; 2097 } 2088 2098 wpos.flags = fuFlags; 2089 2099 wpos.cy = cy; … … 2132 2142 dprintf (("WinSetWindowPos %x %x (%d,%d)(%d,%d) %x", swp.hwnd, swp.hwndInsertBehind, swp.x, swp.y, swp.cx, swp.cy, swp.fl)); 2133 2143 2144 //SvL: For some reason WinSetMultWindowPos doesn't work for showing windows when they are hidden.. 2145 if(fHide) { 2146 ShowWindow(SW_HIDE); 2147 } 2134 2148 rc = OSLibWinSetMultWindowPos(&swp, 1); 2149 if(fShow) { 2150 ShowWindow(SW_SHOWNA); 2151 } 2135 2152 2136 2153 if (rc == FALSE)
Note:
See TracChangeset
for help on using the changeset viewer.