aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/PerLine.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2021-10-12 11:56:13 +1100
committerNeil <nyamatongwe@gmail.com>2021-10-12 11:56:13 +1100
commit701d13c2448efab7e91c6205804c9f3be7a5faae (patch)
tree832cc2362c91a5e500ba85805275712a597fb212 /src/PerLine.cxx
parent0dc196dc02275356f53b20373fd53cee0e0fa227 (diff)
downloadscintilla-mirror-701d13c2448efab7e91c6205804c9f3be7a5faae.tar.gz
Feature [feature-requests:#1416] Use nullptr.
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 068d5d0a5..762891ee3 100644
--- a/src/PerLine.cxx
+++ b/src/PerLine.cxx
@@ -102,7 +102,7 @@ void LineMarkers::Init() {
void LineMarkers::InsertLine(Sci::Line line) {
if (markers.Length()) {
- markers.Insert(line, 0);
+ markers.Insert(line, nullptr);
}
}