diff options
author | Neil <nyamatongwe@gmail.com> | 2014-07-24 12:50:30 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2014-07-24 12:50:30 +1000 |
commit | d5e666a8e7f6297a9838793611086b048d04fd58 (patch) | |
tree | 34822c4bea96860b33e80e3f48c91a1579a1e97b /src/EditView.h | |
parent | a38715eb76de60432e14d0a1aea2e9a181ef42b4 (diff) | |
download | scintilla-mirror-d5e666a8e7f6297a9838793611086b048d04fd58.tar.gz |
Mark const methods const.
Diffstat (limited to 'src/EditView.h')
-rw-r--r-- | src/EditView.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/EditView.h b/src/EditView.h index b136d229a..ea59ac03a 100644 --- a/src/EditView.h +++ b/src/EditView.h @@ -106,7 +106,7 @@ public: int xStart, PRectangle rcLine, int subLine) const; void DrawBackground(Surface *surface, const EditModel &model, const ViewStyle &vsDraw, const LineLayout *ll, PRectangle rcLine, Range lineRange, int posLineStart, int xStart, - int subLine, ColourOptional background); + int subLine, ColourOptional background) const; void DrawForeground(Surface *surface, const EditModel &model, const ViewStyle &vsDraw, const LineLayout *ll, int lineVisible, PRectangle rcLine, Range lineRange, int posLineStart, int xStart, int subLine, ColourOptional background); |