diff options
author | vincentdarley <vincentdarley> | 2003-11-12 17:19:17 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2003-11-12 17:19:17 (GMT) |
commit | a906189ba8d0deb1700017221317967a9d5dc133 (patch) | |
tree | 41d57a84a1514e36a314418a2437aa556a7bda6f /generic/tkTextIndex.c | |
parent | 0faab4b1fcb34df789147ece61ade73b3b7e5b67 (diff) | |
download | tk-a906189ba8d0deb1700017221317967a9d5dc133.zip tk-a906189ba8d0deb1700017221317967a9d5dc133.tar.gz tk-a906189ba8d0deb1700017221317967a9d5dc133.tar.bz2 |
old tk text widget bugs fixed
Diffstat (limited to 'generic/tkTextIndex.c')
-rw-r--r-- | generic/tkTextIndex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkTextIndex.c b/generic/tkTextIndex.c index c5ef481..c270320 100644 --- a/generic/tkTextIndex.c +++ b/generic/tkTextIndex.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkTextIndex.c,v 1.11 2003/11/08 17:22:46 vincentdarley Exp $ + * RCS: @(#) $Id: tkTextIndex.c,v 1.12 2003/11/12 17:19:18 vincentdarley Exp $ */ #include "default.h" @@ -781,7 +781,7 @@ GetIndex(interp, textPtr, string, indexPtr, canCachePtr) if (end == cp) { goto error; } - TkTextPixelIndex(textPtr, x, y, indexPtr); + TkTextPixelIndex(textPtr, x, y, indexPtr, NULL); endOfBase = end; goto gotBase; } |