Changeset 1839 for trunk/src/user32/windlg.cpp
- Timestamp:
- Nov 25, 1999, 8:22:04 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/windlg.cpp
r1622 r1839 1 /* $Id: windlg.cpp,v 1.1 1 1999-11-05 17:50:30 achimhaExp $ */1 /* $Id: windlg.cpp,v 1.12 1999-11-25 19:22:04 sandervl Exp $ */ 2 2 /* 3 3 * Win32 dialog apis for OS/2 … … 130 130 if(!dialog || !dialog->IsDialog()) { 131 131 dprintf(("DialogBoxIndirectParamA, dialog %x not found", hwnd)); 132 SetLastError(ERROR_INVALID_WINDOW_HANDLE); 132 133 return 0; 133 134 } … … 151 152 if(!dialog || !dialog->IsDialog()) { 152 153 dprintf(("DialogBoxIndirectParamW, dialog %x not found", hwnd)); 154 SetLastError(ERROR_INVALID_WINDOW_HANDLE); 153 155 return 0; 154 156 } … … 171 173 if(!dialog || !dialog->IsDialog()) { 172 174 dprintf(("DialogBoxParamA, dialog %x not found", hwnd)); 175 SetLastError(ERROR_INVALID_WINDOW_HANDLE); 173 176 return 0; 174 177 } … … 191 194 if(!dialog || !dialog->IsDialog()) { 192 195 dprintf(("DialogBoxParamW, dialog %x not found", hwnd)); 196 SetLastError(ERROR_INVALID_WINDOW_HANDLE); 193 197 return 0; 194 198 } … … 255 259 } 256 260 dprintf(("USER32: GetDlgItem %x %d NOT FOUND!\n", hwnd, id)); 261 SetLastError(ERROR_INVALID_PARAMETER); 257 262 return 0; 258 263 }
Note:
See TracChangeset
for help on using the changeset viewer.