aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Indicator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Indicator.h b/src/Indicator.h
index 5bdccaf33..c769539a7 100644
--- a/src/Indicator.h
+++ b/src/Indicator.h
@@ -13,7 +13,7 @@ namespace Scintilla::Internal {
struct StyleAndColour {
Scintilla::IndicatorStyle style;
ColourRGBA fore;
- StyleAndColour() noexcept : style(Scintilla::IndicatorStyle::Plain), fore(0, 0, 0) {
+ StyleAndColour() noexcept : style(Scintilla::IndicatorStyle::Plain), fore(black) {
}
StyleAndColour(Scintilla::IndicatorStyle style_, ColourRGBA fore_ = black) noexcept : style(style_), fore(fore_) {
}