aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/profile/diveplotdatamodel.cpp
diff options
context:
space:
mode:
authorGravatar Anton Lundin <glance@acc.umu.se>2014-02-19 11:34:54 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-02-19 07:13:56 -0800
commit43997d3b363034e452931494f6567ff959529b62 (patch)
treea56b2df3e1af3e577d2b8225c18aed1775bd9eee /qt-ui/profile/diveplotdatamodel.cpp
parent48c4c21b9fe76127b35265f90f73abb4fa782500 (diff)
downloadsubsurface-43997d3b363034e452931494f6567ff959529b62.tar.gz
Convert more TRUE/FALSE to stdbools true/false
In Qt5, Qt doesn't define TRUE/FALSE anymore, so we need to stick to stdbools to have Qt5 builds working. Signed-off-by: Anton Lundin <glance@acc.umu.se> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/diveplotdatamodel.cpp')
-rw-r--r--qt-ui/profile/diveplotdatamodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/profile/diveplotdatamodel.cpp b/qt-ui/profile/diveplotdatamodel.cpp
index 111196588..f799135fe 100644
--- a/qt-ui/profile/diveplotdatamodel.cpp
+++ b/qt-ui/profile/diveplotdatamodel.cpp
@@ -154,6 +154,6 @@ void DivePlotDataModel::calculateDecompression()
return;
struct divecomputer *dc = select_dc(&d->dc);
init_decompression(d);
- calculate_deco_information(d, dc, &pInfo, FALSE);
+ calculate_deco_information(d, dc, &pInfo, false);
dataChanged(index(0, CEILING), index(pInfo.nr-1, TISSUE_16));
}