diff options
author | dgp <dgp@noemail.net> | 2002-01-17 03:34:59 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2002-01-17 03:34:59 (GMT) |
commit | 461e603bd2608a84aaf052d9156a864416113681 (patch) | |
tree | 7ba4bea8b33aeafeff8e5bd19ed918e15cfec84a /generic/tkCanvText.c | |
parent | 538aef2a3ad158660d503985e91a461b6564aff8 (diff) | |
download | tk-461e603bd2608a84aaf052d9156a864416113681.zip tk-461e603bd2608a84aaf052d9156a864416113681.tar.gz tk-461e603bd2608a84aaf052d9156a864416113681.tar.bz2 |
* Updated callers of Tcl_Utf* and Tcl_Regexp* APIs to reflect TIP 27
API changes (see Tcl Patch 471509). [Patch 471513]
FossilOrigin-Name: 061e364d6f7bae391846089032e5501a301d0dde
Diffstat (limited to 'generic/tkCanvText.c')
-rw-r--r-- | generic/tkCanvText.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tkCanvText.c b/generic/tkCanvText.c index ef57473..f8d0d7b 100644 --- a/generic/tkCanvText.c +++ b/generic/tkCanvText.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkCanvText.c,v 1.10 2001/08/17 21:08:28 drh Exp $ + * RCS: @(#) $Id: tkCanvText.c,v 1.11 2002/01/17 03:35:00 dgp Exp $ */ #include <stdio.h> @@ -1376,7 +1376,8 @@ GetSelText(canvas, itemPtr, offset, buffer, maxBytes) { TextItem *textPtr = (TextItem *) itemPtr; int byteCount; - char *text, *selStart, *selEnd; + char *text; + CONST char *selStart, *selEnd; Tk_CanvasTextInfo *textInfoPtr = textPtr->textInfoPtr; if ((textInfoPtr->selectFirst < 0) || |