summaryrefslogtreecommitdiffstats
path: root/generic/tkMessage.c
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2002-01-17 05:13:10 (GMT)
committerdgp <dgp@noemail.net>2002-01-17 05:13:10 (GMT)
commit6f9960a0107a6b5ab8758a61b46d59aaac91d08f (patch)
treea64645a35b960e288a19b038e87f81a9248f5709 /generic/tkMessage.c
parent461e603bd2608a84aaf052d9156a864416113681 (diff)
downloadtk-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/tkMessage.c')
-rw-r--r--generic/tkMessage.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkMessage.c b/generic/tkMessage.c
index 1e82ba5..051ee57 100644
--- a/generic/tkMessage.c
+++ b/generic/tkMessage.c
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkMessage.c,v 1.10 2001/08/29 23:22:24 hobbs Exp $
+ * RCS: @(#) $Id: tkMessage.c,v 1.11 2002/01/17 05:13:11 dgp Exp $
*/
#include "tkPort.h"
@@ -313,7 +313,7 @@ MessageWidgetObjCmd(clientData, interp, objc, objv)
Tcl_Obj *CONST objv[]; /* Argument strings. */
{
register Message *msgPtr = (Message *) clientData;
- static char *optionStrings[] = { "cget", "configure", (char *) NULL };
+ static CONST char *optionStrings[] = { "cget", "configure", (char *) NULL };
enum options { MESSAGE_CGET, MESSAGE_CONFIGURE };
int index;
int result = TCL_OK;