diff options
author | nijtmans <nijtmans> | 2010-02-05 22:45:03 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-02-05 22:45:03 (GMT) |
commit | 454e04bbf4e61fb4a363ffcfedb08e941a17952f (patch) | |
tree | 13a98d3f366ae4c7f4dac0f3935a609ea5797c2f /generic/tkBusy.c | |
parent | cece90e032954ae35ffb33120b3a0a01cd226b25 (diff) | |
download | tk-454e04bbf4e61fb4a363ffcfedb08e941a17952f.zip tk-454e04bbf4e61fb4a363ffcfedb08e941a17952f.tar.gz tk-454e04bbf4e61fb4a363ffcfedb08e941a17952f.tar.bz2 |
Make more internal tables "const"
tk*Decls.h (regenerated with new genStubs.tcl from Tcl)
Diffstat (limited to 'generic/tkBusy.c')
-rw-r--r-- | generic/tkBusy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkBusy.c b/generic/tkBusy.c index 6f200c3..1275e81 100644 --- a/generic/tkBusy.c +++ b/generic/tkBusy.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkBusy.c,v 1.7 2010/01/13 23:08:09 nijtmans Exp $ + * RCS: @(#) $Id: tkBusy.c,v 1.8 2010/02/05 22:45:03 nijtmans Exp $ */ #include "tkInt.h" @@ -791,7 +791,7 @@ Tk_BusyObjCmd( Busy *busyPtr; Tcl_Obj *objPtr; int index, result = TCL_OK; - static const char *optionStrings[] = { + static const char *const optionStrings[] = { "cget", "configure", "current", "forget", "hold", "status", NULL }; enum options { |