summaryrefslogtreecommitdiffstats
path: root/qt-gui.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2014-05-29 13:13:11 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-05-29 13:18:13 -0700
commit56395b38946d4b7de9e485098e928e8e432ef920 (patch)
tree3757c7fce14ffd1ad6c68cdbd899e9c49979d2c5 /qt-gui.cpp
parent45725d1c3036e0df16e437b1c3ac14703f0a780c (diff)
downloadsubsurface-56395b38946d4b7de9e485098e928e8e432ef920.tar.gz
Don't assume that pressures are always positive
When planning a dive, the dive could use more gas than is in the cylinder. So getting a negative end pressure is a useful indication to the user that there plan might not be a good one. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-gui.cpp')
-rw-r--r--qt-gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-gui.cpp b/qt-gui.cpp
index f342e20e1..3e898b979 100644
--- a/qt-gui.cpp
+++ b/qt-gui.cpp
@@ -286,7 +286,7 @@ QString get_temp_unit()
return QString(UTF8_DEGREE "F");
}
-QString get_volume_string(volume_t volume, bool showunit, unsigned int mbar)
+QString get_volume_string(volume_t volume, bool showunit, int mbar)
{
if (prefs.units.volume == units::LITER) {
double liter = volume.mliter / 1000.0;