Changeset 5440 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Apr 2, 2001, 7:30:58 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r5429 r5440 1 /* $Id: win32wbase.cpp,v 1.24 8 2001-04-01 22:13:27sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.249 2001-04-02 17:30:58 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 1425 1425 { 1426 1426 setStyle(getStyle() | WS_VISIBLE); 1427 dprintf(("Enable window update for %x", getWindowHandle())); 1427 1428 OSLibWinEnableWindowUpdate(OS2Hwnd,TRUE); 1428 1429 } … … 1432 1433 { 1433 1434 setStyle(getStyle() & ~WS_VISIBLE); 1435 dprintf(("Disable window update for %x", getWindowHandle())); 1434 1436 OSLibWinEnableWindowUpdate(OS2Hwnd,FALSE); 1435 1437 } … … 2294 2296 SendInternalMessageA(WM_MOVE,0,MAKELONG(rectClient.left,rectClient.top)); 2295 2297 } 2298 //testestest 2299 //temporary workaround for file dialogs with template dialog child 2300 //they don't redraw when switching directories 2301 //For some reason the new child's (syslistview32) update rectangle stays 2302 //empty after its parent is made visible with ShowWindow 2303 //TODO: find real cause 2304 if(!wasVisible) { 2305 InvalidateRect(getWindowHandle(), NULL, TRUE); 2306 } 2307 //testestest 2296 2308 END: 2297 2309 fMinMaxChange = FALSE;
Note:
See TracChangeset
for help on using the changeset viewer.