Changeset 3800 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Jul 4, 2000, 10:42:07 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r3789 r3800 1 /* $Id: win32wbase.cpp,v 1.20 5 2000-07-02 14:31:34sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.206 2000-07-04 08:42:07 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 2291 2291 swp.hwnd = OS2Hwnd; 2292 2292 2293 dprintf (("WinSetWindowPos %x %x (%d,%d)(%d,%d) %x", swp.hwnd, swp.hwndInsertBehind, swp.x, swp.y, swp.cx, swp.cy, swp.fl));2294 rc = OSLibWinSetMultWindowPos(&swp, 1);2295 2296 2293 if(fuFlags & SWP_SHOWWINDOW && !IsWindowVisible()) { 2297 2294 setStyle(getStyle() | WS_VISIBLE); 2298 2295 if(hTaskList) { 2296 dprintf(("Adding window %x to tasklist", getWindowHandle())); 2299 2297 OSLibWinChangeTaskList(hTaskList, OS2Hwnd, getWindowNameA(), (getStyle() & WS_VISIBLE) ? 1 : 0); 2300 2298 } … … 2304 2302 setStyle(getStyle() & ~WS_VISIBLE); 2305 2303 if(hTaskList) { 2304 dprintf(("Removing window %x from tasklist", getWindowHandle())); 2306 2305 OSLibWinChangeTaskList(hTaskList, OS2Hwnd, getWindowNameA(), (getStyle() & WS_VISIBLE) ? 1 : 0); 2307 2306 } 2308 2307 } 2308 dprintf (("WinSetWindowPos %x %x (%d,%d)(%d,%d) %x", swp.hwnd, swp.hwndInsertBehind, swp.x, swp.y, swp.cx, swp.cy, swp.fl)); 2309 rc = OSLibWinSetMultWindowPos(&swp, 1); 2310 2309 2311 if(rc == FALSE) 2310 2312 {
Note:
See TracChangeset
for help on using the changeset viewer.