aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/ScintillaWin.cxx
diff options
context:
space:
mode:
authorjrxx <devnull@localhost>2011-01-17 16:04:20 -0600
committerjrxx <devnull@localhost>2011-01-17 16:04:20 -0600
commit9d5f8be054e6c3289b7730935664c0baf65e4c51 (patch)
treec2eb4407e29227d7f4b5f787f8a4e9c34f605784 /win32/ScintillaWin.cxx
parent89c21a81fcfccc4beecc2442e6e434fd6edbc9b1 (diff)
downloadscintilla-mirror-9d5f8be054e6c3289b7730935664c0baf65e4c51.tar.gz
Add SCI_SETMARGINCURSORN and SCI_GETMARGINCURSORN.
Diffstat (limited to 'win32/ScintillaWin.cxx')
-rw-r--r--win32/ScintillaWin.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx
index 603e9b6f8..d4d3b24da 100644
--- a/win32/ScintillaWin.cxx
+++ b/win32/ScintillaWin.cxx
@@ -785,7 +785,7 @@ sptr_t ScintillaWin::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam
::GetCursorPos(&pt);
::ScreenToClient(MainHWND(), &pt);
if (PointInSelMargin(Point(pt.x, pt.y))) {
- DisplayCursor(Window::cursorReverseArrow);
+ DisplayCursor(GetMarginCursor(Point(pt.x, pt.y)));
} else if (PointInSelection(Point(pt.x, pt.y)) && !SelectionEmpty()) {
DisplayCursor(Window::cursorArrow);
} else if (PointIsHotspot(Point(pt.x, pt.y))) {