diff options
author | nijtmans <nijtmans@noemail.net> | 2007-01-18 23:56:42 (GMT) |
---|---|---|
committer | nijtmans <nijtmans@noemail.net> | 2007-01-18 23:56:42 (GMT) |
commit | a1544a2b9ca0b8970280904fd0c63ead15892956 (patch) | |
tree | 14d4b70e0f8f510d7c3dd57fd689e8587d0d74e1 /generic/tkInt.h | |
parent | 2b43be2f7f27a35a71e6e2c8c79e45e2aa0003a3 (diff) | |
download | tk-a1544a2b9ca0b8970280904fd0c63ead15892956.zip tk-a1544a2b9ca0b8970280904fd0c63ead15892956.tar.gz tk-a1544a2b9ca0b8970280904fd0c63ead15892956.tar.bz2 |
various "const" additions, in line with TIP #27
FossilOrigin-Name: f6f6ebc114fdec7534619b04fca232c39139ee51
Diffstat (limited to 'generic/tkInt.h')
-rw-r--r-- | generic/tkInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkInt.h b/generic/tkInt.h index 50af9ef..627ec58 100644 --- a/generic/tkInt.h +++ b/generic/tkInt.h @@ -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: tkInt.h,v 1.76 2007/01/03 05:06:27 nijtmans Exp $ + * RCS: $Id: tkInt.h,v 1.77 2007/01/18 23:56:43 nijtmans Exp $ */ #ifndef _TKINT @@ -845,7 +845,7 @@ typedef struct TkWindow { typedef struct TkStateMap { int numKey; /* Integer representation of a value. */ - char *strKey; /* String representation of a value. */ + const char *strKey; /* String representation of a value. */ } TkStateMap; /* |