- Timestamp:
- Jun 12, 2001, 8:25:11 PM (24 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32dlg.cpp
r5950 r5977 1 /* $Id: win32dlg.cpp,v 1.6 7 2001-06-10 09:19:58sandervl Exp $ */1 /* $Id: win32dlg.cpp,v 1.68 2001-06-12 18:25:11 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Dialog Code for OS/2 … … 646 646 { 647 647 info->windowName = (LPCSTR)(UINT)GET_WORD(p + 1); 648 p += 2;648 p = (WORD *)((char *)p+3); 649 649 } 650 650 else -
trunk/src/user32/window.cpp
r5935 r5977 1 /* $Id: window.cpp,v 1. 99 2001-06-09 14:50:25sandervl Exp $ */1 /* $Id: window.cpp,v 1.100 2001-06-12 18:25:11 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window apis for OS/2 … … 164 164 return 0; 165 165 } 166 166 #ifdef DEBUG 167 167 if(HIWORD(className)) { 168 dprintf(("CreateWindowExW: class %ls name % x parent %x (%d,%d) (%d,%d), %x %x", className, windowName, parent, x, y, width, height, style, exStyle));169 } 170 else dprintf(("CreateWindowExW: class %d name % x parent %x (%d,%d) (%d,%d), %x %x", className, windowName, parent, x, y, width, height, style, exStyle));171 168 dprintf(("CreateWindowExW: class %ls name %ls parent %x (%d,%d) (%d,%d), %x %x", className, HIWORD(windowName) ? windowName : NULL, parent, x, y, width, height, style, exStyle)); 169 } 170 else dprintf(("CreateWindowExW: class %d name %ls parent %x (%d,%d) (%d,%d), %x %x", className, HIWORD(windowName) ? windowName : NULL, parent, x, y, width, height, style, exStyle)); 171 #endif 172 172 if (!HIWORD(className)) 173 173 {
Note:
See TracChangeset
for help on using the changeset viewer.