Do not use nullptr, old compilers die on it.

This commit is contained in:
Klaas Freitag 2015-12-22 15:07:51 +01:00
parent 7ed243d3cd
commit a759ba1d9e
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit b7218616920517c020837648230b0b9ed502bc08
Subproject commit a8fc638c26dd47925e66f05fb87cface5dbbbd81

View File

@ -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);