diff options
author | Anton Lundin <glance@acc.umu.se> | 2014-05-14 00:32:45 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-05-20 11:51:40 +0900 |
commit | 05d9cc409c7ddffcd981c0dafaf67ba6935cc0ba (patch) | |
tree | 99fd8e916a1aedcee8bcfa224cc51597515f3837 /qt-ui/divelistview.cpp | |
parent | 91c20357f510fe7ea1c5740eb476fd718e41259c (diff) | |
download | subsurface-05d9cc409c7ddffcd981c0dafaf67ba6935cc0ba.tar.gz |
Migrate code to for_each_dive and for_each_dc
[Dirk Hohndel: this overlapped with my commit 09e7c61feeea ("Consistently
use for_each_dive (and use it correctly)") so I took the
pieces that I had missed]
Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/divelistview.cpp')
-rw-r--r-- | qt-ui/divelistview.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/qt-ui/divelistview.cpp b/qt-ui/divelistview.cpp index c1d6e8d4d..07ce1f001 100644 --- a/qt-ui/divelistview.cpp +++ b/qt-ui/divelistview.cpp @@ -887,8 +887,7 @@ void DiveListView::loadImages() for_each_dive(j, dive) { if (!dive->selected) continue; - dc = &(dive->dc); - while (dc) { + for_each_dc(dive, dc) { when = dc->when ? dc->when : dive->when; duration_s = dc->duration.seconds ? dc->duration.seconds : dive->duration.seconds; if (when - 3600 < imagetime && when + duration_s + 3600 > imagetime) { @@ -909,7 +908,6 @@ void DiveListView::loadImages() MainWindow::instance()->refreshDisplay(); MainWindow::instance()->graphics()->replot(); } - dc = dc->next; } } } |