Module: wine Branch: refs/heads/master Commit: 117b8e792758769adc0ecd661ebe1ddfe586516f URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=117b8e792758769adc0ecd66...
Author: Mikołaj Zalewski mikolaj@zalewski.pl Date: Wed May 17 01:20:22 2006 +0200
comctl32: listview: Recompute sizes after a column deletion.
---
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 e57e584..44fa653 100644 --- a/dlls/comctl32/listview.c +++ b/dlls/comctl32/listview.c @@ -4430,6 +4430,7 @@ static BOOL LISTVIEW_DeleteColumn(LISTVI }
/* update the other column info */ + LISTVIEW_UpdateItemSize(infoPtr); if(DPA_GetPtrCount(infoPtr->hdpaColumns) == 0) LISTVIEW_InvalidateList(infoPtr); else