aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/PerLine.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2017-04-15 14:28:09 +1000
committerNeil <nyamatongwe@gmail.com>2017-04-15 14:28:09 +1000
commit71cba42205ad92d1d946caead382a326008ae110 (patch)
tree6c43fd4b26d50c12e1ff58ddd33449f5b74c0fe4 /src/PerLine.cxx
parentdfff8da4e2b017d29d870c9b4f642a5c1ce3147c (diff)
downloadscintilla-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.cxx2
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 {