Changeset 1248 for trunk/src/user32/windlg.cpp
- Timestamp:
- Oct 11, 1999, 6:04:52 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/windlg.cpp
r1240 r1248 1 /* $Id: windlg.cpp,v 1. 4 1999-10-10 08:59:41 sandervlExp $ */1 /* $Id: windlg.cpp,v 1.5 1999-10-11 16:04:52 cbratschi Exp $ */ 2 2 /* 3 3 * Win32 dialog apis for OS/2 … … 214 214 if(!dialog || !dialog->IsDialog()) { 215 215 dprintf(("GetNextDlgTabItem, window %x not found", hwndDlg)); 216 216 SetLastError(ERROR_INVALID_WINDOW_HANDLE); 217 217 return 0; 218 218 } … … 230 230 if(!dialog || !dialog->IsDialog()) { 231 231 dprintf(("GetDlgItem, window %x not found", hwnd)); 232 232 SetLastError(ERROR_INVALID_WINDOW_HANDLE); 233 233 return 0; 234 234 } … … 249 249 if(!dlgcontrol) { 250 250 dprintf(("GetDlgCtrlID, control %x not found", hwnd)); 251 251 SetLastError(ERROR_INVALID_WINDOW_HANDLE); 252 252 return 0; 253 253 } … … 264 264 if(!dialog || !dialog->IsDialog()) { 265 265 dprintf(("GetDlgItem, window %x not found", hwnd)); 266 266 SetLastError(ERROR_INVALID_WINDOW_HANDLE); 267 267 return 0; 268 268 } … … 357 357 if(!dialog || !dialog->IsDialog()) { 358 358 dprintf(("GetNextDlgGroupItem, window %x not found", hwnd)); 359 359 SetLastError(ERROR_INVALID_WINDOW_HANDLE); 360 360 return 0; 361 361 }
Note:
See TracChangeset
for help on using the changeset viewer.