diff options
author | dgp <dgp@users.sourceforge.net> | 2002-01-17 03:35:00 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2002-01-17 03:35:00 (GMT) |
commit | e2d6df79c697064b173e14f29a157733ad3a9a6f (patch) | |
tree | 7ba4bea8b33aeafeff8e5bd19ed918e15cfec84a /unix | |
parent | ce1f89bf15dec76c7845f7678f3c12cb56e0bc4a (diff) | |
download | tk-e2d6df79c697064b173e14f29a157733ad3a9a6f.zip tk-e2d6df79c697064b173e14f29a157733ad3a9a6f.tar.gz tk-e2d6df79c697064b173e14f29a157733ad3a9a6f.tar.bz2 |
* Updated callers of Tcl_Utf* and Tcl_Regexp* APIs to reflect TIP 27
API changes (see Tcl Patch 471509). [Patch 471513]
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tkUnixMenu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/tkUnixMenu.c b/unix/tkUnixMenu.c index 10e0659..c2d4e41 100644 --- a/unix/tkUnixMenu.c +++ b/unix/tkUnixMenu.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkUnixMenu.c,v 1.5 2001/10/12 13:30:31 tmh Exp $ + * RCS: @(#) $Id: tkUnixMenu.c,v 1.6 2002/01/17 03:35:01 dgp Exp $ */ #include "tkPort.h" @@ -877,8 +877,8 @@ DrawMenuUnderline(menuPtr, mePtr, d, gc, tkfont, fmPtr, x, y, width, height) int activeBorderWidth; int leftEdge; char *label = Tcl_GetStringFromObj(mePtr->labelPtr, NULL); - char *start = Tcl_UtfAtIndex(label, mePtr->underline); - char *end = Tcl_UtfNext(start); + CONST char *start = Tcl_UtfAtIndex(label, mePtr->underline); + CONST char *end = Tcl_UtfNext(start); Tk_GetPixelsFromObj(NULL, menuPtr->tkwin, menuPtr->activeBorderWidthPtr, &activeBorderWidth); |