From b3b7ecb390d807ab80d07a3a4f859ec936106ba8 Mon Sep 17 00:00:00 2001 From: Igor Tarasov Date: Tue, 17 Feb 2009 15:20:52 +0400 Subject: [PATCH] comctl32: Make listview forward HDN_ITEMCLICK. --- dlls/comctl32/listview.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/comctl32/listview.c b/dlls/comctl32/listview.c index 6724139f7df..66b45b47461 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;