diff options
author | patthoyts@users.sourceforge.net <patthoyts> | 2009-02-22 23:39:11 (GMT) |
---|---|---|
committer | patthoyts@users.sourceforge.net <patthoyts> | 2009-02-22 23:39:11 (GMT) |
commit | f76cdbd4befb1b5cdb6c6ce3ca1cedd9fb8e19d1 (patch) | |
tree | 573e97524719cecd278dadfd081a58b70333ac0e /win/tkWinCursor.c | |
parent | c7f51ce29131167753ad446f98091eb8f679100f (diff) | |
download | tk-f76cdbd4befb1b5cdb6c6ce3ca1cedd9fb8e19d1.zip tk-f76cdbd4befb1b5cdb6c6ce3ca1cedd9fb8e19d1.tar.gz tk-f76cdbd4befb1b5cdb6c6ce3ca1cedd9fb8e19d1.tar.bz2 |
[Patch 2542828] use stock Win32 help arrow cursor for question_arrow
Diffstat (limited to 'win/tkWinCursor.c')
-rw-r--r-- | win/tkWinCursor.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/win/tkWinCursor.c b/win/tkWinCursor.c index 99a7ffd..a3d534e 100644 --- a/win/tkWinCursor.c +++ b/win/tkWinCursor.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: tkWinCursor.c,v 1.17 2008/10/17 23:18:38 nijtmans Exp $ + * RCS: @(#) $Id: tkWinCursor.c,v 1.18 2009/02/22 23:39:11 patthoyts Exp $ */ #include "tkWinInt.h" @@ -32,6 +32,9 @@ typedef struct { #ifndef IDC_HAND #define IDC_HAND MAKEINTRESOURCE(32649) #endif +#ifndef IDC_HELP +#define IDC_HELP MAKEINTRESOURCE(32651) +#endif /* * The table below is used to map from the name of a predefined cursor to its @@ -62,6 +65,7 @@ static struct CursorName { {"watch", IDC_WAIT}, {"xterm", IDC_IBEAM}, {"hand2", IDC_HAND}, + {"question_arrow", IDC_HELP}, {NULL, 0} }; |