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/tkFrame.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/tkFrame.c')
-rw-r--r-- | generic/tkFrame.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkFrame.c b/generic/tkFrame.c index eea7e9d..eaccd58 100644 --- a/generic/tkFrame.c +++ b/generic/tkFrame.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: tkFrame.c,v 1.40 2010/01/13 23:08:08 nijtmans Exp $ + * RCS: @(#) $Id: tkFrame.c,v 1.41 2010/02/05 22:45:03 nijtmans Exp $ */ #include "default.h" @@ -164,7 +164,7 @@ enum labelanchor { LABELANCHOR_W, LABELANCHOR_WN, LABELANCHOR_WS }; -static const char *labelAnchorStrings[] = { +static const char *const labelAnchorStrings[] = { "e", "en", "es", "n", "ne", "nw", "s", "se", "sw", "w", "wn", "ws", NULL }; |