summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/fl_cursor.cxx10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/fl_cursor.cxx b/src/fl_cursor.cxx
index a4c42e121..74848bcd4 100644
--- a/src/fl_cursor.cxx
+++ b/src/fl_cursor.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: fl_cursor.cxx,v 1.6 1999/01/07 19:17:37 mike Exp $"
+// "$Id: fl_cursor.cxx,v 1.6.2.1 1999/12/05 13:59:26 mike Exp $"
//
// Mouse cursor support for the Fast Light Tool Kit (FLTK).
//
@@ -43,6 +43,10 @@ void fl_cursor(Fl_Cursor c, Fl_Color fg, Fl_Color bg) {
#ifdef WIN32
+# ifndef IDC_HAND
+# define IDC_HAND MAKEINTRESOURCE(32649)
+# endif // !IDC_HAND
+
void Fl_Window::cursor(Fl_Cursor c, Fl_Color, Fl_Color) {
if (!shown()) return;
if (c > FL_CURSOR_NESW) {
@@ -57,7 +61,7 @@ void Fl_Window::cursor(Fl_Cursor c, Fl_Color, Fl_Color) {
case FL_CURSOR_WAIT: n = IDC_WAIT; break;
case FL_CURSOR_INSERT: n = IDC_IBEAM; break;
case FL_CURSOR_HELP: n = IDC_HELP; break;
- case FL_CURSOR_HAND: n = IDC_UPARROW; break;
+ case FL_CURSOR_HAND: n = IDC_HAND; break;
case FL_CURSOR_MOVE: n = IDC_SIZEALL; break;
case FL_CURSOR_N:
case FL_CURSOR_S:
@@ -167,5 +171,5 @@ void Fl_Window::cursor(Fl_Cursor c, Fl_Color fg, Fl_Color bg) {
#endif
//
-// End of "$Id: fl_cursor.cxx,v 1.6 1999/01/07 19:17:37 mike Exp $".
+// End of "$Id: fl_cursor.cxx,v 1.6.2.1 1999/12/05 13:59:26 mike Exp $".
//