diff options
| author | Neil <nyamatongwe@gmail.com> | 2016-10-26 23:09:50 +1100 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2016-10-26 23:09:50 +1100 |
| commit | 065668992566910aef274b995d8f861906d514a9 (patch) | |
| tree | 68c245a6630c79a41df63b8ad03bc92801169d29 /src/Indicator.h | |
| parent | dbef8326ee583d3ad79941d629b4314f359765c1 (diff) | |
| download | scintilla-mirror-065668992566910aef274b995d8f861906d514a9.tar.gz | |
INDIC_POINT and INDIC_POINTCHARACTER indicators added to display small arrows
underneath positions or characters.
Diffstat (limited to 'src/Indicator.h')
| -rw-r--r-- | src/Indicator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Indicator.h b/src/Indicator.h index c22ec71c6..9b887df9d 100644 --- a/src/Indicator.h +++ b/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); } |
