Nikolay Sivov : comctl32/listview: Remove some dead code.

Alexandre Julliard julliard at winehq.org
Mon Jan 14 15:55:49 CST 2013


Module: wine
Branch: master
Commit: ea57e29d083895c16825e0fe71c592c682fcc4bd
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=ea57e29d083895c16825e0fe71c592c682fcc4bd

Author: Nikolay Sivov <nsivov at 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.




More information about the wine-cvs mailing list