comtrl32/treeview: Display state value as hex.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
e9da184bbd
commit
6fdf492022
|
@ -4448,7 +4448,7 @@ TREEVIEW_DoSelectItem(TREEVIEW_INFO *infoPtr, INT action, HTREEITEM newSelect,
|
|||
|
||||
assert(newSelect == NULL || TREEVIEW_ValidItem(infoPtr, newSelect));
|
||||
|
||||
TRACE("Entering item %p (%s), flag 0x%x, cause 0x%x, state %d\n",
|
||||
TRACE("Entering item %p (%s), flag 0x%x, cause 0x%x, state 0x%x\n",
|
||||
newSelect, TREEVIEW_ItemName(newSelect), action, cause,
|
||||
newSelect ? newSelect->state : 0);
|
||||
|
||||
|
@ -4523,7 +4523,7 @@ TREEVIEW_DoSelectItem(TREEVIEW_INFO *infoPtr, INT action, HTREEITEM newSelect,
|
|||
break;
|
||||
}
|
||||
|
||||
TRACE("Leaving state %d\n", newSelect ? newSelect->state : 0);
|
||||
TRACE("Leaving state 0x%x\n", newSelect ? newSelect->state : 0);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue