diff options
author | Neil <nyamatongwe@gmail.com> | 2017-01-04 13:32:23 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2017-01-04 13:32:23 +1100 |
commit | 75de132ed9cd2b59d33e0a721bac285db2528949 (patch) | |
tree | 7b0d2050dffec113ec07637b575cd3075d269e44 /src/EditView.cxx | |
parent | ef94015d9934b956d23531e2d3bcc2cf3d36c820 (diff) | |
download | scintilla-mirror-75de132ed9cd2b59d33e0a721bac285db2528949.tar.gz |
Mark some const methods as const.
Diffstat (limited to 'src/EditView.cxx')
-rw-r--r-- | src/EditView.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/EditView.cxx b/src/EditView.cxx index 5c622568b..a35a46b54 100644 --- a/src/EditView.cxx +++ b/src/EditView.cxx @@ -2085,7 +2085,7 @@ void EditView::PaintText(Surface *surfaceWindow, const EditModel &model, PRectan } void EditView::FillLineRemainder(Surface *surface, const EditModel &model, const ViewStyle &vsDraw, const LineLayout *ll, - int line, PRectangle rcArea, int subLine) { + int line, PRectangle rcArea, int subLine) const { int eolInSelection = 0; int alpha = SC_ALPHA_NOALPHA; if (!hideSelection) { |