diff options
author | Neil <nyamatongwe@gmail.com> | 2018-04-19 17:26:14 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2018-04-19 17:26:14 +1000 |
commit | c4025b67d3afa0de81d6f6360a8d7a49bf1406c9 (patch) | |
tree | 3e214b300104359ab0317b84b5be5a1a50119be0 /src/Indicator.cxx | |
parent | a29a92c614ae03f4058f0e63899350d83c43d670 (diff) | |
download | scintilla-mirror-c4025b67d3afa0de81d6f6360a8d7a49bf1406c9.tar.gz |
Use ColourDesired constructor explicitly to make more obvious.
Constructor not marked explicit as may be used in external platform layers.
Diffstat (limited to 'src/Indicator.cxx')
-rw-r--r-- | src/Indicator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Indicator.cxx b/src/Indicator.cxx index 3551e7202..5e229039e 100644 --- a/src/Indicator.cxx +++ b/src/Indicator.cxx @@ -28,7 +28,7 @@ static PRectangle PixelGridAlign(const PRectangle &rc) { void Indicator::Draw(Surface *surface, const PRectangle &rc, const PRectangle &rcLine, const PRectangle &rcCharacter, DrawState drawState, int value) const { StyleAndColour sacDraw = sacNormal; if (Flags() & SC_INDICFLAG_VALUEFORE) { - sacDraw.fore = value & SC_INDICVALUEMASK; + sacDraw.fore = ColourDesired(value & SC_INDICVALUEMASK); } if (drawState == drawHover) { sacDraw = sacHover; |