diff options
author | dgp <dgp@noemail.net> | 2002-01-17 05:13:10 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2002-01-17 05:13:10 (GMT) |
commit | 6f9960a0107a6b5ab8758a61b46d59aaac91d08f (patch) | |
tree | a64645a35b960e288a19b038e87f81a9248f5709 /generic/tkImgBmap.c | |
parent | 461e603bd2608a84aaf052d9156a864416113681 (diff) | |
download | tk-6f9960a0107a6b5ab8758a61b46d59aaac91d08f.zip tk-6f9960a0107a6b5ab8758a61b46d59aaac91d08f.tar.gz tk-6f9960a0107a6b5ab8758a61b46d59aaac91d08f.tar.bz2 |
* Updates to handle change in type of tablePtr
argument of Tcl_GetIndexFromObj(Struct) from (char **) to
(CONST char **). [TIP 27] [Patch 504705]
FossilOrigin-Name: 85e5c7aa1baa3bd2b7bdb971f3cf83f4f5573723
Diffstat (limited to 'generic/tkImgBmap.c')
-rw-r--r-- | generic/tkImgBmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkImgBmap.c b/generic/tkImgBmap.c index 8f03e74..847d4b8 100644 --- a/generic/tkImgBmap.c +++ b/generic/tkImgBmap.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkImgBmap.c,v 1.12 2001/07/14 15:53:53 drh Exp $ + * RCS: @(#) $Id: tkImgBmap.c,v 1.13 2002/01/17 05:13:11 dgp Exp $ */ #include "tkInt.h" @@ -761,7 +761,7 @@ ImgBmapCmd(clientData, interp, objc, objv) int objc; /* Number of arguments. */ Tcl_Obj *CONST objv[]; /* Argument objects. */ { - static char *bmapOptions[] = {"cget", "configure", (char *) NULL}; + static CONST char *bmapOptions[] = {"cget", "configure", (char *) NULL}; BitmapMaster *masterPtr = (BitmapMaster *) clientData; int code, index; |