- Timestamp:
- Jul 18, 2000, 8:35:40 PM (25 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/dc.cpp
r3821 r3853 1 /* $Id: dc.cpp,v 1.6 6 2000-07-15 08:08:01sandervl Exp $ */1 /* $Id: dc.cpp,v 1.67 2000-07-18 18:35:38 sandervl Exp $ */ 2 2 3 3 /* … … 1194 1194 WinReleasePS (hpsTemp); 1195 1195 1196 if (!success) 1197 SetLastError(ERROR_INVALID_PARAMETER_W); 1198 1196 if (!success) { 1197 dprintf(("RedrawWindow failure!")); 1198 SetLastError(ERROR_INVALID_PARAMETER_W); 1199 } 1199 1200 return (success); 1200 1201 } -
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 */ -
trunk/src/user32/windlg.cpp
r2803 r3853 1 /* $Id: windlg.cpp,v 1.1 6 2000-02-16 14:28:25sandervl Exp $ */1 /* $Id: windlg.cpp,v 1.17 2000-07-18 18:35:40 sandervl Exp $ */ 2 2 /* 3 3 * Win32 dialog apis for OS/2 … … 83 83 if(GetLastError() != 0) 84 84 { 85 dprintf(("Win32Dialog error found !!"));85 dprintf(("Win32Dialog error found (%0x)!!", GetLastError())); 86 86 delete dialog; 87 87 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.