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/PerLine.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/PerLine.cxx')
-rw-r--r-- | src/PerLine.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PerLine.cxx b/src/PerLine.cxx index f26b48b77..41e767ab7 100644 --- a/src/PerLine.cxx +++ b/src/PerLine.cxx @@ -385,7 +385,7 @@ bool LineAnnotation::MultipleStyles(Sci::Line line) const { if (annotations.Length() && (line >= 0) && (line < annotations.Length()) && annotations[line]) return reinterpret_cast<AnnotationHeader *>(annotations[line])->style == IndividualStyles; else - return 0; + return false; } int LineAnnotation::Style(Sci::Line line) const { |