diff options
author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-04-18 18:08:37 (GMT) |
---|---|---|
committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-04-18 18:08:37 (GMT) |
commit | 8a62ae175255565861cad9c9f862b68ab726ceb1 (patch) | |
tree | bab392895ed17f917311f2fb0119304a49a10671 /generic/tkScale.c | |
parent | e21009634df0760729646b3aae523e2de14ac45e (diff) | |
download | tk-8a62ae175255565861cad9c9f862b68ab726ceb1.zip tk-8a62ae175255565861cad9c9f862b68ab726ceb1.tar.gz tk-8a62ae175255565861cad9c9f862b68ab726ceb1.tar.bz2 |
make some more internal tables CONST
Diffstat (limited to 'generic/tkScale.c')
-rw-r--r-- | generic/tkScale.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkScale.c b/generic/tkScale.c index 676f84b..9b582fe 100644 --- a/generic/tkScale.c +++ b/generic/tkScale.c @@ -30,7 +30,7 @@ * It is used together with the "enum orient" declaration in tkScale.h. */ -static char *orientStrings[] = { +static CONST char *orientStrings[] = { "horizontal", "vertical", (char *) NULL }; @@ -39,7 +39,7 @@ static char *orientStrings[] = { * It is used together with the "enum state" declaration in tkScale.h. */ -static char *stateStrings[] = { +static CONST char *stateStrings[] = { "active", "disabled", "normal", (char *) NULL }; |