Changeset 21916 for trunk/src/user32/win32wbaseprop.cpp
- Timestamp:
- Dec 18, 2011, 10:28:22 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 bin 2 Makefile.inc 1 env.cmd 2 LocalConfig.kmk
-
-
Property svn:mergeinfo
set to
/branches/gcc-kmk merged eligible
- Property svn:ignore
-
trunk/src/user32/win32wbaseprop.cpp
r10031 r21916 12 12 */ 13 13 #include <string.h> 14 #include <user32.h>14 #include "user32.h" 15 15 #include <heapstring.h> 16 16 #include <misc.h> … … 70 70 71 71 if(HIWORD(str)) { 72 dprintf2(("GetProp %x %s %x", getWindowHandle , str, prop ? prop->handle : 0));73 } 74 else dprintf2(("GetProp %x %x %x", getWindowHandle , str, prop ? prop->handle : 0));72 dprintf2(("GetProp %x %s %x", getWindowHandle(), str, prop ? prop->handle : 0)); 73 } 74 else dprintf2(("GetProp %x %x %x", getWindowHandle(), str, prop ? prop->handle : 0)); 75 75 76 76 return prop ? prop->handle : 0; … … 85 85 86 86 if (HIWORD(str)) { 87 dprintf2(("SetProp %x %s %x", getWindowHandle , str, handle));88 } 89 else dprintf2(("SetProp %x %x %x", getWindowHandle , str, handle));87 dprintf2(("SetProp %x %s %x", getWindowHandle(), str, handle)); 88 } 89 else dprintf2(("SetProp %x %x %x", getWindowHandle(), str, handle)); 90 90 91 91 if (!(prop = findWindowProperty(str))) … … 192 192 INT ret = -1; 193 193 194 dprintf(("EnumPropsExA %x %x %x", getWindowHandle , func, lParam));194 dprintf(("EnumPropsExA %x %x %x", getWindowHandle(), func, lParam)); 195 195 196 196 for (prop = propertyList; (prop); prop = next) … … 220 220 INT ret = -1; 221 221 222 dprintf(("EnumPropsExW %x %x %x", getWindowHandle , func, lParam));222 dprintf(("EnumPropsExW %x %x %x", getWindowHandle(), func, lParam)); 223 223 224 224 for (prop = propertyList; (prop); prop = next)
Note:
See TracChangeset
for help on using the changeset viewer.