summaryrefslogtreecommitdiffstats
path: root/generic/tkGet.c
diff options
context:
space:
mode:
authordgp@users.sourceforge.net <dgp>2002-01-17 05:13:11 (GMT)
committerdgp@users.sourceforge.net <dgp>2002-01-17 05:13:11 (GMT)
commit192fc1b045fd06303e1cf33d88f3a3326ab77302 (patch)
treea64645a35b960e288a19b038e87f81a9248f5709 /generic/tkGet.c
parentcb16fb4f738320d0a3d992704d2d54b874a48535 (diff)
downloadtk-192fc1b045fd06303e1cf33d88f3a3326ab77302.zip
tk-192fc1b045fd06303e1cf33d88f3a3326ab77302.tar.gz
tk-192fc1b045fd06303e1cf33d88f3a3326ab77302.tar.bz2
* Updates to handle change in type of tablePtr
argument of Tcl_GetIndexFromObj(Struct) from (char **) to (CONST char **). [TIP 27] [Patch 504705]
Diffstat (limited to 'generic/tkGet.c')
-rw-r--r--generic/tkGet.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/generic/tkGet.c b/generic/tkGet.c
index dd920be..7beeff7 100644
--- a/generic/tkGet.c
+++ b/generic/tkGet.c
@@ -13,7 +13,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkGet.c,v 1.6 1999/12/14 06:52:28 hobbs Exp $
+ * RCS: @(#) $Id: tkGet.c,v 1.7 2002/01/17 05:13:11 dgp Exp $
*/
#include "tkInt.h"
@@ -37,9 +37,12 @@ static Tcl_ThreadDataKey dataKey;
* used by Tk_GetAnchorFromObj and Tk_GetJustifyFromObj.
*/
-static char *anchorStrings[] = {"n", "ne", "e", "se", "s", "sw", "w", "nw",
- "center", (char *) NULL};
-static char *justifyStrings[] = {"left", "right", "center", (char *) NULL};
+static CONST char *anchorStrings[] = {
+ "n", "ne", "e", "se", "s", "sw", "w", "nw", "center", (char *) NULL
+};
+static CONST char *justifyStrings[] = {
+ "left", "right", "center", (char *) NULL
+};
/*