From e7216769dbeaa7e39262087f02ef8352253f1c03 Mon Sep 17 00:00:00 2001 From: Zufu Liu Date: Tue, 7 Nov 2023 13:46:52 +1100 Subject: Feature [feature-requests:#1501] Another use of black constant. --- src/Indicator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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_) { } -- cgit v1.2.3