summaryrefslogtreecommitdiffstats
path: root/generic/tkTextIndex.c
diff options
context:
space:
mode:
authorvincentdarley <vincentdarley@noemail.net>2004-02-28 15:59:47 (GMT)
committervincentdarley <vincentdarley@noemail.net>2004-02-28 15:59:47 (GMT)
commitc07e2eda30aa747f709c167d4da9fbad6c7630b1 (patch)
treeed81cd10ea2c55e2efc507352ed8e243fb021e77 /generic/tkTextIndex.c
parentbaed492dc94d7155ca740698f02efc598a5c8d10 (diff)
downloadtk-c07e2eda30aa747f709c167d4da9fbad6c7630b1.zip
tk-c07e2eda30aa747f709c167d4da9fbad6c7630b1.tar.gz
tk-c07e2eda30aa747f709c167d4da9fbad6c7630b1.tar.bz2
remove access to tclInt.h
FossilOrigin-Name: 5d6500acb02600f7f4278050e4bfce2d0f809e96
Diffstat (limited to 'generic/tkTextIndex.c')
-rw-r--r--generic/tkTextIndex.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/generic/tkTextIndex.c b/generic/tkTextIndex.c
index 8588020..41702f1 100644
--- a/generic/tkTextIndex.c
+++ b/generic/tkTextIndex.c
@@ -10,14 +10,13 @@
* 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.16 2004/01/27 10:09:35 das Exp $
+ * RCS: @(#) $Id: tkTextIndex.c,v 1.17 2004/02/28 16:04:43 vincentdarley Exp $
*/
#include "default.h"
#include "tkPort.h"
#include "tkInt.h"
#include "tkText.h"
-#include <tclInt.h>
/*
* Index to use to select last character in line (very large integer):
@@ -2041,7 +2040,7 @@ StartEnd(textPtr, string, indexPtr)
int chSize = 1;
if (segPtr->typePtr == &tkTextCharType) {
Tcl_UniChar ch;
- chSize = TclUtfToUniChar(segPtr->body.chars + offset, &ch);
+ chSize = Tcl_UtfToUniChar(segPtr->body.chars + offset, &ch);
if (!Tcl_UniCharIsWordChar(ch)) {
break;
}
@@ -2083,7 +2082,7 @@ StartEnd(textPtr, string, indexPtr)
int chSize = 1;
if (segPtr->typePtr == &tkTextCharType) {
Tcl_UniChar ch;
- TclUtfToUniChar(segPtr->body.chars + offset, &ch);
+ Tcl_UtfToUniChar(segPtr->body.chars + offset, &ch);
if (!Tcl_UniCharIsWordChar(ch)) {
break;
}