Changeset 3373 for trunk/src/user32/window.cpp
- Timestamp:
- Apr 13, 2000, 8:51:43 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/window.cpp
r3119 r3373 1 /* $Id: window.cpp,v 1. 59 2000-03-14 20:04:09sandervl Exp $ */1 /* $Id: window.cpp,v 1.60 2000-04-13 18:50:44 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window apis for OS/2 … … 107 107 cs.dwExStyle = exStyle; 108 108 if(HIWORD(className)) { 109 dprintf(("CreateWindowExA: class %s parent %x (%d,%d) (%d,%d), %x %x ", className, parent, x, y, width, height, style, exStyle));110 } 111 else dprintf(("CreateWindowExA: class %d parent %x (%d,%d) (%d,%d), %x %x ", className, parent, x, y, width, height, style, exStyle));109 dprintf(("CreateWindowExA: class %s parent %x (%d,%d) (%d,%d), %x %x menu=%x", className, parent, x, y, width, height, style, exStyle, menu)); 110 } 111 else dprintf(("CreateWindowExA: class %d parent %x (%d,%d) (%d,%d), %x %x menu=%x", className, parent, x, y, width, height, style, exStyle, menu)); 112 112 113 113 if(!strcmpi(className, MDICLIENTCLASSNAMEA)) { … … 372 372 window = Win32BaseWindow::GetWindowFromHandle(hwnd); 373 373 if(!window) { 374 dprintf(("IsChild , window %x not found", hwnd));374 dprintf(("IsChild %x, window %x not found", hwndParent, hwnd)); 375 375 SetLastError(ERROR_INVALID_WINDOW_HANDLE); 376 376 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.