diff options
author | Neil <nyamatongwe@gmail.com> | 2014-09-05 14:29:44 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2014-09-05 14:29:44 +1000 |
commit | 530c22a71d944e7c778f55ba5f0ea4bd00958bcf (patch) | |
tree | 8c58df280b095e6b87a61b38cc75921efc142bfe /src | |
parent | 61cd6dd962f4ed57892bd5e020aa737b70686c2c (diff) | |
download | scintilla-mirror-530c22a71d944e7c778f55ba5f0ea4bd00958bcf.tar.gz |
Bug [#1654]. Missing cast in PositionIsHotspot.
From Mat Berchtold.
Diffstat (limited to 'src')
-rw-r--r-- | src/Editor.cxx | 2 |
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) { |