Module: wine Branch: master Commit: da98243ea13636a826bc94bf85853fd7bad62d50 URL: http://source.winehq.org/git/wine.git/?a=commit;h=da98243ea13636a826bc94bf85...
Author: Lei Zhang thestig@google.com Date: Wed Mar 19 15:41:12 2008 -0700
comctl32: Redraw listview after changing extended styles.
---
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 b3445d9..524d845 100644 --- a/dlls/comctl32/listview.c +++ b/dlls/comctl32/listview.c @@ -7034,6 +7034,7 @@ static DWORD LISTVIEW_SetExtendedListViewStyle(LISTVIEW_INFO *infoPtr, DWORD dwM SetWindowLongW(infoPtr->hwndHeader, GWL_STYLE, dwStyle); }
+ LISTVIEW_InvalidateList(infoPtr); return dwOldExStyle; }