Module: wine Branch: master Commit: b3b7ecb390d807ab80d07a3a4f859ec936106ba8 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b3b7ecb390d807ab80d07a3a4f...
Author: Igor Tarasov tarasov.igor@gmail.com Date: Tue Feb 17 15:20:52 2009 +0400
comctl32: Make listview forward HDN_ITEMCLICK.
---
dlls/comctl32/listview.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/comctl32/listview.c b/dlls/comctl32/listview.c index 6724139..66b45b4 100644 --- a/dlls/comctl32/listview.c +++ b/dlls/comctl32/listview.c @@ -8986,6 +8986,7 @@ static LRESULT LISTVIEW_HeaderNotification(LISTVIEW_INFO *infoPtr, const NMHEADE nmlv.iItem = -1; nmlv.iSubItem = lpnmh->iItem; notify_listview(infoPtr, LVN_COLUMNCLICK, &nmlv); + notify_forward_header(infoPtr, lpnmh); } break;