diff options
Diffstat (limited to 'qt-ui/models.cpp')
-rw-r--r-- | qt-ui/models.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qt-ui/models.cpp b/qt-ui/models.cpp index 8a5b8235b..b289813a3 100644 --- a/qt-ui/models.cpp +++ b/qt-ui/models.cpp @@ -1105,8 +1105,8 @@ QVariant TripItem::data(int column, int role) const static int nitrox_sort_value(struct dive *dive) { - int o2, he, o2low; - get_dive_gas(dive, &o2, &he, &o2low); + int o2, he, o2max; + get_dive_gas(dive, &o2, &he, &o2max); return he * 1000 + o2; } |