diff options
Diffstat (limited to 'scintilla/src/Indicator.cxx')
-rw-r--r-- | scintilla/src/Indicator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scintilla/src/Indicator.cxx b/scintilla/src/Indicator.cxx index 6fadfad..f6e81f8 100644 --- a/scintilla/src/Indicator.cxx +++ b/scintilla/src/Indicator.cxx @@ -23,7 +23,7 @@ static PRectangle PixelGridAlign(const PRectangle &rc) { return PRectangle::FromInts(int(rc.left + 0.5), int(rc.top), int(rc.right + 0.5), int(rc.bottom));
}
-void Indicator::Draw(Surface *surface, const PRectangle &rc, const PRectangle &rcLine) {
+void Indicator::Draw(Surface *surface, const PRectangle &rc, const PRectangle &rcLine) const {
surface->PenColour(fore);
int ymid = static_cast<int>(rc.bottom + rc.top) / 2;
if (style == INDIC_SQUIGGLE) {
|