summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2003-08-27 15:47:41 (GMT)
committerdkf <dkf@noemail.net>2003-08-27 15:47:41 (GMT)
commitc3335fa99d16d9b91c8e4a9e6fee297e22a608d1 (patch)
tree09d9eb020b76a49765213a2267106580201c3ebe /generic
parent583a0be1796b9a0e244cf287055564e7571f6696 (diff)
downloadtk-c3335fa99d16d9b91c8e4a9e6fee297e22a608d1.zip
tk-c3335fa99d16d9b91c8e4a9e6fee297e22a608d1.tar.gz
tk-c3335fa99d16d9b91c8e4a9e6fee297e22a608d1.tar.bz2
Removed unused variable [Bug 664783]
FossilOrigin-Name: 42cf7f470d795743bc668af45bd177939c1230c2
Diffstat (limited to 'generic')
-rw-r--r--generic/tkListbox.c5
1 files changed, 2 insertions, 3 deletions
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.