diff options
author | Anton Lundin <glance@acc.umu.se> | 2014-01-15 09:30:42 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-01-15 15:52:31 +0700 |
commit | 7e9582631d97fc35522344eda417c02c25ea12db (patch) | |
tree | 5b8172298be3508f7c6b6f4e80ad24d3c7a7400c /qt-ui/downloadfromdivecomputer.cpp | |
parent | 795443766597e512504b4d4599d26131c83bff1d (diff) | |
download | subsurface-7e9582631d97fc35522344eda417c02c25ea12db.tar.gz |
Convert to TRUE/FALSE to stdbools true/false
I had problems with this one on Qt5.
Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/downloadfromdivecomputer.cpp')
-rw-r--r-- | qt-ui/downloadfromdivecomputer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/downloadfromdivecomputer.cpp b/qt-ui/downloadfromdivecomputer.cpp index a43a06bc2..483149c8f 100644 --- a/qt-ui/downloadfromdivecomputer.cpp +++ b/qt-ui/downloadfromdivecomputer.cpp @@ -350,7 +350,7 @@ void DownloadFromDCWidget::onDownloadThreadFinished() for (int i = dive_table.nr - 1; i >= previousLast; i--) delete_single_dive(i); } else { - process_dives(TRUE, preferDownloaded()); + process_dives(true, preferDownloaded()); } } else { updateState(CANCELLED); |