Fix a TRACE.

This commit is contained in:
Huw Davies 2004-02-12 20:06:04 +00:00 committed by Alexandre Julliard
parent 2cd9ee9528
commit d9558dbd19
1 changed files with 1 additions and 1 deletions

View File

@ -1203,7 +1203,7 @@ TREEVIEW_InsertItemT(TREEVIEW_INFO *infoPtr, const TVINSERTSTRUCTW *ptdi, BOOL i
TRACE("parent %p position %p: %s\n", parentItem, insertAfter,
(tvItem->mask & TVIF_TEXT)
? ((tvItem->pszText == LPSTR_TEXTCALLBACKW) ? "<callback>"
: debugstr_w(tvItem->pszText))
: (isW ? debugstr_w(tvItem->pszText) : debugstr_a((LPSTR)tvItem->pszText)))
: "<no label>");
newItem = TREEVIEW_AllocateItem(infoPtr);