aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2014-06-23 17:05:06 +1000
committerNeil <nyamatongwe@gmail.com>2014-06-23 17:05:06 +1000
commit99fe65d3efef3442a0766e2b21fd3726a1169c50 (patch)
tree08fe921c8842438b3ba001948bfd9ec076267950 /src/Editor.h
parent4bbf7d16f03b48ddd4d2184bc21cb98889b64899 (diff)
downloadscintilla-mirror-99fe65d3efef3442a0766e2b21fd3726a1169c50.tar.gz
Mark DrawBlockCaret as const since it only draws and does not affect Editor.
Diffstat (limited to 'src/Editor.h')
-rw-r--r--src/Editor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.h b/src/Editor.h
index 6c7ae6c59..f26f1c447 100644
--- a/src/Editor.h
+++ b/src/Editor.h
@@ -453,7 +453,7 @@ protected: // ScintillaBase subclass needs access to much of Editor
void DrawLine(Surface *surface, const ViewStyle &vsDraw, int line, int lineVisible, int xStart,
PRectangle rcLine, LineLayout *ll, int subLine);
void DrawBlockCaret(Surface *surface, const ViewStyle &vsDraw, LineLayout *ll, int subLine,
- int xStart, int offset, int posCaret, PRectangle rcCaret, ColourDesired caretColour);
+ int xStart, int offset, int posCaret, PRectangle rcCaret, ColourDesired caretColour) const;
void DrawCarets(Surface *surface, const ViewStyle &vsDraw, int line, int xStart,
PRectangle rcLine, LineLayout *ll, int subLine);
void RefreshPixMaps(Surface *surfaceWindow);