Module: wine Branch: master Commit: ea57e29d083895c16825e0fe71c592c682fcc4bd URL: http://source.winehq.org/git/wine.git/?a=commit;h=ea57e29d083895c16825e0fe71...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Sat Jan 12 21:33:13 2013 +0400
comctl32/listview: Remove some dead code.
---
dlls/comctl32/listview.c | 13 +------------ 1 files changed, 1 insertions(+), 12 deletions(-)
diff --git a/dlls/comctl32/listview.c b/dlls/comctl32/listview.c index 75aa51b..49da83c 100644 --- a/dlls/comctl32/listview.c +++ b/dlls/comctl32/listview.c @@ -3490,26 +3490,15 @@ static void LISTVIEW_ShiftFocus(LISTVIEW_INFO *infoPtr, INT focus, INT item, INT */ static void LISTVIEW_ShiftIndices(LISTVIEW_INFO *infoPtr, INT nItem, INT direction) { - BOOL bOldChange; - - /* temporarily disable change notification while shifting items */ - bOldChange = infoPtr->bDoChangeNotify; - infoPtr->bDoChangeNotify = FALSE; - TRACE("Shifting %i, %i steps\n", nItem, direction);
ranges_shift(infoPtr->selectionRanges, nItem, direction, infoPtr->nItemCount); - assert(abs(direction) == 1); - infoPtr->nSelectionMark = shift_item(infoPtr, infoPtr->nSelectionMark, nItem, direction); - - /* But we are not supposed to modify nHotItem! */
- infoPtr->bDoChangeNotify = bOldChange; + /* But we are not supposed to modify nHotItem! */ }
- /** * DESCRIPTION: * Adds a block of selections.