diff options
author | Zufu Liu <unknown> | 2023-11-07 13:46:52 +1100 |
---|---|---|
committer | Zufu Liu <unknown> | 2023-11-07 13:46:52 +1100 |
commit | e7216769dbeaa7e39262087f02ef8352253f1c03 (patch) | |
tree | cc49e706dff32fcd4fbcc0adb59780a15f6e0474 | |
parent | cba3701a6c1a67b839ebe567992e004d1ac4d7f1 (diff) | |
download | scintilla-mirror-e7216769dbeaa7e39262087f02ef8352253f1c03.tar.gz |
Feature [feature-requests:#1501] Another use of black constant.
-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 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_) { } |