diff --git a/mozilla/widget/src/os2/nsModule.cpp b/mozilla/widget/src/os2/nsModule.cpp index 70c8cd73c06..3f970162e23 100644 --- a/mozilla/widget/src/os2/nsModule.cpp +++ b/mozilla/widget/src/os2/nsModule.cpp @@ -185,10 +185,10 @@ HPOINTER nsWidgetModuleData::GetPointer( nsCursor aCursor) case eCursor_cell: idPtr = ID_PTR_CELL ; break; case eCursor_grab: idPtr = ID_PTR_GRAB ; break; case eCursor_grabbing: idPtr = ID_PTR_GRABBING ; break; + case eCursor_spinning: idPtr = ID_PTR_ARROWWAIT ; break; case eCursor_crosshair: case eCursor_help: - case eCursor_spinning: case eCursor_context_menu: case eCursor_count_up: case eCursor_count_down: diff --git a/mozilla/widget/src/os2/res/arrow_wait.ptr b/mozilla/widget/src/os2/res/arrow_wait.ptr new file mode 100644 index 00000000000..999b88505cc Binary files /dev/null and b/mozilla/widget/src/os2/res/arrow_wait.ptr differ diff --git a/mozilla/widget/src/os2/res/wdgtres.rc b/mozilla/widget/src/os2/res/wdgtres.rc index 9fb902d2225..6f221847284 100644 --- a/mozilla/widget/src/os2/res/wdgtres.rc +++ b/mozilla/widget/src/os2/res/wdgtres.rc @@ -60,6 +60,7 @@ POINTER ID_PTR_ALIAS aliasb.ptr POINTER ID_PTR_CELL cell.ptr POINTER ID_PTR_GRAB grab.ptr POINTER ID_PTR_GRABBING grabbing.ptr +POINTER ID_PTR_ARROWWAIT arrow_wait.ptr /* stringtable */ STRINGTABLE diff --git a/mozilla/widget/src/os2/resID.h b/mozilla/widget/src/os2/resID.h index 0fe77cba236..4b0b3b1cf1e 100644 --- a/mozilla/widget/src/os2/resID.h +++ b/mozilla/widget/src/os2/resID.h @@ -51,6 +51,7 @@ #define ID_PTR_CELL 2011 #define ID_PTR_GRAB 2012 #define ID_PTR_GRABBING 2013 +#define ID_PTR_ARROWWAIT 2014 #define ID_STR_FONT 10000 #define ID_STR_HMMDIR 10001