aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2014-09-05 14:29:44 +1000
committerNeil <nyamatongwe@gmail.com>2014-09-05 14:29:44 +1000
commit530c22a71d944e7c778f55ba5f0ea4bd00958bcf (patch)
tree8c58df280b095e6b87a61b38cc75921efc142bfe /src
parent61cd6dd962f4ed57892bd5e020aa737b70686c2c (diff)
downloadscintilla-mirror-530c22a71d944e7c778f55ba5f0ea4bd00958bcf.tar.gz
Bug [#1654]. Missing cast in PositionIsHotspot.
From Mat Berchtold.
Diffstat (limited to 'src')
-rw-r--r--src/Editor.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index d298a8a5d..8f0f43b08 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -4276,7 +4276,7 @@ void Editor::ButtonDown(Point pt, unsigned int curTime, bool shift, bool ctrl, b
}
bool Editor::PositionIsHotspot(int position) const {
- return vs.styles[pdoc->StyleAt(position)].hotspot;
+ return vs.styles[static_cast<unsigned char>(pdoc->StyleAt(position))].hotspot;
}
bool Editor::PointIsHotspot(Point pt) {