diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2009-02-23 12:41:03 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2009-02-23 12:41:03 (GMT) |
commit | 22aeecc3e7f01548116fdf9166c8865a1aa2f523 (patch) | |
tree | cc9273c4eae643444425168414179b9f2da61a3c /win | |
parent | 2ca1b55bb19ba7d64eca80db9088d05c46125a5b (diff) | |
download | tk-22aeecc3e7f01548116fdf9166c8865a1aa2f523.zip tk-22aeecc3e7f01548116fdf9166c8865a1aa2f523.tar.gz tk-22aeecc3e7f01548116fdf9166c8865a1aa2f523.tar.bz2 |
[Patch 2542828] use stock Win32 help arrow cursor when question_arrow requested (danckaert)
Diffstat (limited to 'win')
-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 e22a1c7..00794cd 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.15 2007/12/13 15:28:55 dgp Exp $ + * RCS: @(#) $Id: tkWinCursor.c,v 1.15.2.1 2009/02/23 12:41:03 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} }; |