Nikolay Sivov : comctl32/listview: Add a TRACE(..) to LISTVIEW_CreateHeader .
Module: wine Branch: master Commit: ac8257cb1e805a0257328395885c4c11f6c64da6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ac8257cb1e805a025732839588... Author: Nikolay Sivov <bunglehead(a)gmail.com> Date: Tue Apr 21 05:27:19 2009 -0400 comctl32/listview: Add a TRACE(..) to LISTVIEW_CreateHeader. --- dlls/comctl32/listview.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/dlls/comctl32/listview.c b/dlls/comctl32/listview.c index 1ba8162..8f1489f 100644 --- a/dlls/comctl32/listview.c +++ b/dlls/comctl32/listview.c @@ -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;
participants (1)
-
Alexandre Julliard