From c832ba7c7debddc2c2e5475dbd0b203a17bda4c1 Mon Sep 17 00:00:00 2001 From: Neil Date: Wed, 17 Oct 2018 09:06:39 +1100 Subject: Backport: Use nullptr and default brace initialisation for some simple cases. Backport of changeset 7118:526318f7d6c7. --- src/Editor.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Editor.cxx') 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) {} -- cgit v1.2.3