From e361b905f57a0c438db0275dcb1db6d184ad3f70 Mon Sep 17 00:00:00 2001 From: dkf Date: Wed, 27 Aug 2003 15:47:41 +0000 Subject: Removed unused variable [Bug 664783] --- ChangeLog | 5 +++++ generic/tkListbox.c | 5 ++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 97e6222..7aec673 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-08-27 Donal K. Fellows + + * generic/tkListbox.c (ListboxSelect): Remove unused variable + 'increment'. [Bug 664783] + 2003-08-25 David Gravereaux * win/makefile.vc: Don't do a string compare on the $(DBGX) diff --git a/generic/tkListbox.c b/generic/tkListbox.c index 78977d6..6403a71 100644 --- a/generic/tkListbox.c +++ b/generic/tkListbox.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkListbox.c,v 1.29 2003/02/25 02:07:25 hobbs Exp $ + * RCS: @(#) $Id: tkListbox.c,v 1.30 2003/08/27 15:47:41 dkf Exp $ */ #include "tkPort.h" @@ -2941,7 +2941,7 @@ ListboxSelect(listPtr, first, last, select) int select; /* 1 means select items, 0 means * deselect them. */ { - int i, firstRedisplay, increment, oldCount; + int i, firstRedisplay, oldCount; Tcl_HashEntry *entry; int new; @@ -2961,7 +2961,6 @@ ListboxSelect(listPtr, first, last, select) } oldCount = listPtr->numSelected; firstRedisplay = -1; - increment = select ? 1 : -1; /* * For each index in the range, find it in our selection hash table. -- cgit v0.12