diff options
author | Neil <nyamatongwe@gmail.com> | 2019-06-22 11:37:23 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2019-06-22 11:37:23 +1000 |
commit | 39a55b921ece0756cdd1845e034a65633da07a64 (patch) | |
tree | 97c88624e0813955a987ad7c4bf3ca346fe205fa /src/ViewStyle.cxx | |
parent | bc02d0c442355ca6bd20893749664a44584f25ef (diff) | |
download | scintilla-mirror-39a55b921ece0756cdd1845e034a65633da07a64.tar.gz |
Feature [feature-requests:#1297] Update to use INDICATOR_ instead of INDIC_ as
INDIC_ is also used for indicator styles.
Diffstat (limited to 'src/ViewStyle.cxx')
-rw-r--r-- | src/ViewStyle.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ViewStyle.cxx b/src/ViewStyle.cxx index cfd9701ae..6b24e15fb 100644 --- a/src/ViewStyle.cxx +++ b/src/ViewStyle.cxx @@ -56,13 +56,13 @@ void FontRealised::Realise(Surface &surface, int zoomLevel, int technology, cons spaceWidth = surface.WidthText(font, " "); } -ViewStyle::ViewStyle() : markers(MARKER_MAX + 1), indicators(INDIC_MAX + 1) { +ViewStyle::ViewStyle() : markers(MARKER_MAX + 1), indicators(INDICATOR_MAX + 1) { Init(); } // Copy constructor only called when printing copies the screen ViewStyle so it can be // modified for printing styles. -ViewStyle::ViewStyle(const ViewStyle &source) : markers(MARKER_MAX + 1), indicators(INDIC_MAX + 1) { +ViewStyle::ViewStyle(const ViewStyle &source) : markers(MARKER_MAX + 1), indicators(INDICATOR_MAX + 1) { Init(source.styles.size()); styles = source.styles; for (size_t sty=0; sty<source.styles.size(); sty++) { |