summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authornijtmans <nijtmans>2007-01-18 23:56:43 (GMT)
committernijtmans <nijtmans>2007-01-18 23:56:43 (GMT)
commit37fce39d44a1d160664bc0b56e21d5a92999d243 (patch)
tree14d4b70e0f8f510d7c3dd57fd689e8587d0d74e1 /win
parent2ad95dd3a686c81720b60b67494f1c25178a7d0b (diff)
downloadtk-37fce39d44a1d160664bc0b56e21d5a92999d243.zip
tk-37fce39d44a1d160664bc0b56e21d5a92999d243.tar.gz
tk-37fce39d44a1d160664bc0b56e21d5a92999d243.tar.bz2
various "const" additions, in line with TIP #27
Diffstat (limited to 'win')
-rw-r--r--win/tkWinFont.c4
-rw-r--r--win/tkWinTest.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/win/tkWinFont.c b/win/tkWinFont.c
index a86a6bd..2f5671b 100644
--- a/win/tkWinFont.c
+++ b/win/tkWinFont.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: tkWinFont.c,v 1.30 2007/01/12 10:41:23 dkf Exp $
+ * RCS: @(#) $Id: tkWinFont.c,v 1.31 2007/01/18 23:56:44 nijtmans Exp $
*/
#include "tkWinInt.h"
@@ -157,7 +157,7 @@ typedef struct CanUse {
* represent the system fonts and the numbers used by Windows.
*/
-static TkStateMap systemMap[] = {
+static const TkStateMap systemMap[] = {
{ANSI_FIXED_FONT, "ansifixed"},
{ANSI_VAR_FONT, "ansi"},
{DEVICE_DEFAULT_FONT, "device"},
diff --git a/win/tkWinTest.c b/win/tkWinTest.c
index 195605a..d73f159 100644
--- a/win/tkWinTest.c
+++ b/win/tkWinTest.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: tkWinTest.c,v 1.11 2005/12/09 00:48:54 das Exp $
+ * RCS: @(#) $Id: tkWinTest.c,v 1.12 2007/01/18 23:56:44 nijtmans Exp $
*/
#include "tkWinInt.h"
@@ -237,7 +237,7 @@ TestwineventCmd(
UINT message;
WPARAM wParam;
LPARAM lParam;
- static TkStateMap messageMap[] = {
+ static const TkStateMap messageMap[] = {
{WM_LBUTTONDOWN, "WM_LBUTTONDOWN"},
{WM_LBUTTONUP, "WM_LBUTTONUP"},
{WM_CHAR, "WM_CHAR"},