Module: wine Branch: master Commit: a6694761faf638e34a6a62ada2e6fab4729f1fe4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a6694761faf638e34a6a62ada2...
Author: Nikolay Sivov bunglehead@gmail.com Date: Wed Aug 5 20:59:33 2009 +0400
comctl32/listview: Fix comment typo.
---
dlls/comctl32/listview.c | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/dlls/comctl32/listview.c b/dlls/comctl32/listview.c index 3a0c411..a65d832 100644 --- a/dlls/comctl32/listview.c +++ b/dlls/comctl32/listview.c @@ -85,7 +85,6 @@ * Extended Styles * -- LVS_EX_BORDERSELECT * -- LVS_EX_FLATSB - * -- LVS_EX_HEADERDRAGDROP * -- LVS_EX_INFOTIP * -- LVS_EX_LABELTIP * -- LVS_EX_MULTIWORKAREAS @@ -5774,9 +5773,9 @@ static INT LISTVIEW_GetColumnWidth(const LISTVIEW_INFO *infoPtr, INT nColumn) nColumnWidth = infoPtr->nItemWidth; break; case LV_VIEW_DETAILS: - /* We are not using LISTVIEW_GetHeaderRect as this data is updated only after a HDM_ITEMCHANGED. + /* We are not using LISTVIEW_GetHeaderRect as this data is updated only after a HDN_ITEMCHANGED. * There is an application that subclasses the listview, calls LVM_GETCOLUMNWIDTH in the - * HDM_ITEMCHANGED handler and goes into infinite recursion if it receives old data. + * HDN_ITEMCHANGED handler and goes into infinite recursion if it receives old data. * * TODO: should we do the same in LVM_GETCOLUMN? */