Added wxCURSOR_RIGHT_ARROW, which is like the typical wxCURSOR_ARROR,

but points to the right, (duh...)  This cursor is now used in wxSTC in
the margin area.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14615 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2002-03-15 22:52:15 +00:00
parent c1fa2fda3c
commit 15dadf3155
9 changed files with 25 additions and 15 deletions

View File

@@ -437,7 +437,7 @@ void Window::SetCursor(Cursor curs) {
cursorId = wxCURSOR_SIZENS;
break;
case cursorReverseArrow:
cursorId = wxCURSOR_POINT_RIGHT;
cursorId = wxCURSOR_RIGHT_ARROW;
break;
default:
cursorId = wxCURSOR_ARROW;