Module: wine Branch: master Commit: b4b186d7b7cb5924e75cb6cc1278e862cd67fa63 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b4b186d7b7cb5924e75cb6cc12...
Author: Nikolay Sivov bunglehead@gmail.com Date: Mon Jun 15 23:14:39 2009 +0400
comctl32/listview: Forward HDN_DIVIDERDBLCLICK to parent.
---
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 24c298e..de98e38 100644 --- a/dlls/comctl32/listview.c +++ b/dlls/comctl32/listview.c @@ -9342,6 +9342,7 @@ static LRESULT LISTVIEW_HeaderNotification(LISTVIEW_INFO *infoPtr, const NMHEADE case HDN_DIVIDERDBLCLICKW: case HDN_DIVIDERDBLCLICKA: LISTVIEW_SetColumnWidth(infoPtr, lpnmh->iItem, LVSCW_AUTOSIZE); + notify_forward_header(infoPtr, lpnmh); break; }