diff options
author | vincentdarley <vincentdarley@noemail.net> | 2003-11-12 17:19:17 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley@noemail.net> | 2003-11-12 17:19:17 (GMT) |
commit | 5786c74f0aad747475a3f7d09746dfdce78a1981 (patch) | |
tree | 41d57a84a1514e36a314418a2437aa556a7bda6f /generic/tkTextIndex.c | |
parent | 96e31268a4f0a05fc20141912849e93b90fbd890 (diff) | |
download | tk-5786c74f0aad747475a3f7d09746dfdce78a1981.zip tk-5786c74f0aad747475a3f7d09746dfdce78a1981.tar.gz tk-5786c74f0aad747475a3f7d09746dfdce78a1981.tar.bz2 |
old tk text widget bugs fixed
FossilOrigin-Name: 0e36a93aca983ae79e773d92beb00bb47e5cc57f
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; } |