Changeset 3853 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Jul 18, 2000, 8:35:40 PM (25 years ago)
- File:
-
- 1 edited
-
trunk/src/user32/win32wbase.cpp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r3800 r3853 1 /* $Id: win32wbase.cpp,v 1.20 6 2000-07-04 08:42:07sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.207 2000-07-18 18:35:39 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 521 521 0, fTaskList,fXDefault | fCXDefault,windowClass->getStyle()); 522 522 if(OS2Hwnd == 0) { 523 dprintf(("Window creation failed!! "));523 dprintf(("Window creation failed!! OS LastError %0x", OSLibWinGetLastError())); 524 524 SetLastError(ERROR_OUTOFMEMORY); //TODO: Better error 525 525 return FALSE; … … 2404 2404 if((getStyle() & WS_CHILD) && !(getExStyle() & WS_EX_NOPARENTNOTIFY)) 2405 2405 { 2406 if(getParent() )2406 if(getParent() && getParent()->IsWindowDestroyed() == FALSE) 2407 2407 { 2408 2408 /* Notify the parent window only */ … … 2413 2413 } 2414 2414 } 2415 else DebugInt3();2415 //// else DebugInt3(); 2416 2416 } 2417 2417 /* Hide the window */
Note:
See TracChangeset
for help on using the changeset viewer.
