diff options
author | Neil <nyamatongwe@gmail.com> | 2017-04-15 14:28:09 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2017-04-15 14:28:09 +1000 |
commit | 71cba42205ad92d1d946caead382a326008ae110 (patch) | |
tree | 6c43fd4b26d50c12e1ff58ddd33449f5b74c0fe4 /src/PositionCache.cxx | |
parent | dfff8da4e2b017d29d870c9b4f642a5c1ce3147c (diff) | |
download | scintilla-mirror-71cba42205ad92d1d946caead382a326008ae110.tar.gz |
Use bool literals true and false instead of 1 and 0.
Diffstat (limited to 'src/PositionCache.cxx')
-rw-r--r-- | src/PositionCache.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PositionCache.cxx b/src/PositionCache.cxx index 6df915b8b..fff1d58a6 100644 --- a/src/PositionCache.cxx +++ b/src/PositionCache.cxx @@ -55,7 +55,7 @@ LineLayout::LineLayout(int maxLineLength_) : numCharsBeforeEOL(0), validity(llInvalid), xHighlightGuide(0), - highlightColumn(0), + highlightColumn(false), containsCaret(false), edgeColumn(0), chars(0), |