diff options
Diffstat (limited to 'scintilla/src/Indicator.h')
-rw-r--r-- | scintilla/src/Indicator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scintilla/src/Indicator.h b/scintilla/src/Indicator.h index d6f88ba..72c935a 100644 --- a/scintilla/src/Indicator.h +++ b/scintilla/src/Indicator.h @@ -40,7 +40,7 @@ public: Indicator(int style_, ColourDesired fore_=ColourDesired(0,0,0), bool under_=false, int fillAlpha_=30, int outlineAlpha_=50) :
sacNormal(style_, fore_), sacHover(style_, fore_), under(under_), fillAlpha(fillAlpha_), outlineAlpha(outlineAlpha_), attributes(0) {
}
- void Draw(Surface *surface, const PRectangle &rc, const PRectangle &rcLine, DrawState drawState, int value) const;
+ void Draw(Surface *surface, const PRectangle &rc, const PRectangle &rcLine, const PRectangle &rcCharacter, DrawState drawState, int value) const;
bool IsDynamic() const {
return !(sacNormal == sacHover);
}
|