From a759ba1d9e66f439d804c7929fa9058b6d653a67 Mon Sep 17 00:00:00 2001 From: Klaas Freitag Date: Tue, 22 Dec 2015 15:07:51 +0100 Subject: [PATCH] Do not use nullptr, old compilers die on it. --- doc/ocdoc | 2 +- src/gui/folderman.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/ocdoc b/doc/ocdoc index b72186169..a8fc638c2 160000 --- a/doc/ocdoc +++ b/doc/ocdoc @@ -1 +1 @@ -Subproject commit b7218616920517c020837648230b0b9ed502bc08 +Subproject commit a8fc638c26dd47925e66f05fb87cface5dbbbd81 diff --git a/src/gui/folderman.cpp b/src/gui/folderman.cpp index 6ad1fa07b..e6195452a 100644 --- a/src/gui/folderman.cpp +++ b/src/gui/folderman.cpp @@ -672,7 +672,7 @@ void FolderMan::slotStartScheduledFolderSync() } // Find the first folder in the queue that can be synced. - Folder* f = nullptr; + Folder* f = 0; while( !_scheduleQueue.isEmpty() ) { f = _scheduleQueue.dequeue(); Q_ASSERT(f); -- 2.30.2