diff options
Diffstat (limited to 'generic/tkText.c')
-rw-r--r-- | generic/tkText.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tkText.c b/generic/tkText.c index 6652f3d..6156dd4 100644 --- a/generic/tkText.c +++ b/generic/tkText.c @@ -48,7 +48,7 @@ * table below. */ -static char *stateStrings[] = { +static const char *stateStrings[] = { "disabled", "normal", NULL }; @@ -58,7 +58,7 @@ static char *stateStrings[] = { * table below. */ -static char *wrapStrings[] = { +static const char *wrapStrings[] = { "char", "none", "word", NULL }; @@ -68,7 +68,7 @@ static char *wrapStrings[] = { * the string table below. */ -static char *tabStyleStrings[] = { +static const char *tabStyleStrings[] = { "tabular", "wordprocessor", NULL }; |