summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2021-06-03 11:13:28 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2021-06-03 11:13:28 (GMT)
commit61b9ed1c00f2d74eb9e160868ca1a0fca43bd6a2 (patch)
tree82ff40c327747faab68b12f160c5b271ec0c840a /win
parent5ad56f498e969ec873ccc117e34cebf114e13f59 (diff)
parent7e5b4c8530c66c478348ac66e9c508c8e5d6b9d3 (diff)
downloadtk-61b9ed1c00f2d74eb9e160868ca1a0fca43bd6a2.zip
tk-61b9ed1c00f2d74eb9e160868ca1a0fca43bd6a2.tar.gz
tk-61b9ed1c00f2d74eb9e160868ca1a0fca43bd6a2.tar.bz2
Merge 8.6
Diffstat (limited to 'win')
-rw-r--r--win/tkWinCursor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tkWinCursor.c b/win/tkWinCursor.c
index 0a984f9..4e9a546 100644
--- a/win/tkWinCursor.c
+++ b/win/tkWinCursor.c
@@ -39,7 +39,7 @@ typedef struct {
* resource identifier.
*/
-static struct CursorName {
+static const struct CursorName {
const char *name;
LPCTSTR id;
} cursorNames[] = {
@@ -96,7 +96,7 @@ TkGetCursorByName(
Tk_Uid string) /* Description of cursor. See manual entry for
* details on legal syntax. */
{
- struct CursorName *namePtr;
+ const struct CursorName *namePtr;
TkWinCursor *cursorPtr;
int argc;
const char **argv = NULL;