summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authornijtmans <nijtmans>2010-02-05 22:45:03 (GMT)
committernijtmans <nijtmans>2010-02-05 22:45:03 (GMT)
commit454e04bbf4e61fb4a363ffcfedb08e941a17952f (patch)
tree13a98d3f366ae4c7f4dac0f3935a609ea5797c2f /win
parentcece90e032954ae35ffb33120b3a0a01cd226b25 (diff)
downloadtk-454e04bbf4e61fb4a363ffcfedb08e941a17952f.zip
tk-454e04bbf4e61fb4a363ffcfedb08e941a17952f.tar.gz
tk-454e04bbf4e61fb4a363ffcfedb08e941a17952f.tar.bz2
Make more internal tables "const"
tk*Decls.h (regenerated with new genStubs.tcl from Tcl)
Diffstat (limited to 'win')
-rw-r--r--win/.cvsignore1
-rw-r--r--win/tkWinDialog.c4
2 files changed, 3 insertions, 2 deletions
diff --git a/win/.cvsignore b/win/.cvsignore
index 83300ce..702b882 100644
--- a/win/.cvsignore
+++ b/win/.cvsignore
@@ -22,3 +22,4 @@ config.status
*.exp
*.manifest
.#*
+*.a
diff --git a/win/tkWinDialog.c b/win/tkWinDialog.c
index ebea91d..81d795c 100644
--- a/win/tkWinDialog.c
+++ b/win/tkWinDialog.c
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkWinDialog.c,v 1.69 2010/01/13 23:08:11 nijtmans Exp $
+ * RCS: @(#) $Id: tkWinDialog.c,v 1.70 2010/02/05 22:45:03 nijtmans Exp $
*
*/
@@ -2718,7 +2718,7 @@ FontchooserConfigureCmd(
Tk_Window tkwin = clientData;
HookData *hdPtr = NULL;
int i, r = TCL_OK;
- static const char *optionStrings[] = {
+ static const char *const optionStrings[] = {
"-parent", "-title", "-font", "-command", "-visible", NULL
};