Changeset 336 for trunk/src/gui/kernel/qclipboard_pm.cpp
- Timestamp:
- Nov 22, 2009, 9:40:51 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gui/kernel/qclipboard_pm.cpp
r334 r336 115 115 116 116 #ifdef QCLIPBOARD_DEBUG 117 118 119 117 120 foreach(QPMMime::Match match, matches) 118 121 DEBUG(("QClipboardWatcher::peekData: converter %p mime \"%ls\" " … … 257 260 foreach(QPMMime::Match match, matches) 258 261 DEBUG(("QClipboardData::setSource: match: converter %p format 0x%lX " 259 "priority %d", match.converter, match.format, match.priority)); 262 "(%ls) priority %d", match.converter, match.format, 263 QPMMime::formatName(match.format).utf16(), match.priority)); 260 264 } 261 265 #endif … … 307 311 ok2 = WinSetClipbrdData(NULLHANDLE, data, format, flags); 308 312 } 309 DEBUG(("QClipboardData::setClipboard: convert to CF 0x%lX flags 0x%lX " 310 "data 0x%lX delayed %d ok %d", format, flags, data, isDelayed, ok)); 313 DEBUG(("QClipboardData::setClipboard: convert to format 0x%lX (%ls) " 314 "flags 0x%lX data 0x%lX delayed %d ok %d", format, 315 QPMMime::formatName(format).utf16(), flags, data, isDelayed, ok)); 311 316 #ifndef QT_NO_DEBUG 312 317 if (!ok2) { … … 410 415 411 416 case WM_RENDERFMT: { 412 DEBUG(("QClipboardData::message: WM_RENDERFMT: CF 0x%lX", (ULONG)mp1)); 417 DEBUG(("QClipboardData::message: WM_RENDERFMT: CF 0x%lX (%ls)", 418 (ULONG)mp1, QPMMime::formatName((ULONG)mp1).utf16())); 413 419 if (src) { 414 420 foreach(QPMMime::Match match, matches) {
Note:
See TracChangeset
for help on using the changeset viewer.