aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2018-10-17 09:06:39 +1100
committerNeil <nyamatongwe@gmail.com>2018-10-17 09:06:39 +1100
commitc832ba7c7debddc2c2e5475dbd0b203a17bda4c1 (patch)
tree97b64418e5ac671f704070d0e01fc892f5bed359 /src/Editor.cxx
parent918551c28d2d44aa5a18bc1cd520ab2e365325ec (diff)
downloadscintilla-mirror-c832ba7c7debddc2c2e5475dbd0b203a17bda4c1.tar.gz
Backport: Use nullptr and default brace initialisation for some simple cases.
Backport of changeset 7118:526318f7d6c7.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r--src/Editor.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index 1498ce4f6..8e6567a7d 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -91,7 +91,7 @@ static bool IsLastStep(const DocModification &mh) {
}
Timer::Timer() :
- ticking(false), ticksToWait(0), tickerID(0) {}
+ ticking(false), ticksToWait(0), tickerID{} {}
Idler::Idler() :
state(false), idlerID(0) {}