diff options
author | nijtmans <nijtmans@noemail.net> | 2007-01-03 04:10:48 (GMT) |
---|---|---|
committer | nijtmans <nijtmans@noemail.net> | 2007-01-03 04:10:48 (GMT) |
commit | 20bc56dc6b930904a8dfaccf986fbc6db4603883 (patch) | |
tree | 55ba9040aa4b132a813feb9491021de15558513d /generic/tkColor.c | |
parent | 8d55943dd567b499fbf13c6dd8fb318bcfdf7f41 (diff) | |
download | tk-20bc56dc6b930904a8dfaccf986fbc6db4603883.zip tk-20bc56dc6b930904a8dfaccf986fbc6db4603883.tar.gz tk-20bc56dc6b930904a8dfaccf986fbc6db4603883.tar.bz2 |
various "const" additions in implementation
FossilOrigin-Name: 9739a2a47a27acb348d0beece059576f919376bd
Diffstat (limited to 'generic/tkColor.c')
-rw-r--r-- | generic/tkColor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkColor.c b/generic/tkColor.c index 0eb80f7..c64fe80 100644 --- a/generic/tkColor.c +++ b/generic/tkColor.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: tkColor.c,v 1.12 2005/11/17 10:57:35 dkf Exp $ + * RCS: @(#) $Id: tkColor.c,v 1.13 2007/01/03 04:10:54 nijtmans Exp $ */ #include "tkColor.h" @@ -705,7 +705,7 @@ static void InitColorObj( Tcl_Obj *objPtr) /* The object to convert. */ { - Tcl_ObjType *typePtr; + const Tcl_ObjType *typePtr; /* * Free the old internalRep before setting the new one. |