comctl32/listview: Add a TRACE(..) to LISTVIEW_CreateHeader.

This commit is contained in:
Nikolay Sivov 2009-04-21 05:27:19 -04:00 committed by Alexandre Julliard
parent 949e9043b9
commit ac8257cb1e
1 changed files with 2 additions and 0 deletions

View File

@ -1377,6 +1377,8 @@ static INT LISTVIEW_CreateHeader(LISTVIEW_INFO *infoPtr)
if (infoPtr->hwndHeader) return 0;
TRACE("Creating header for list %p\n", infoPtr->hwndSelf);
/* setup creation flags */
dFlags |= (LVS_NOSORTHEADER & infoPtr->dwStyle) ? 0 : HDS_BUTTONS;
dFlags |= (LVS_NOCOLUMNHEADER & infoPtr->dwStyle) ? HDS_HIDDEN : 0;