mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
Return a value when getting SAC rate
Obvious "mass edit" error. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
eef5bf75c3
commit
6faf33047e
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ QString DiveObjectHelper::sac() const
|
|||
const char *unit;
|
||||
int decimal;
|
||||
double value = get_volume_units(m_dive->sac, &decimal, &unit);
|
||||
QString::number(value, 'f', decimal).append(unit);
|
||||
return QString::number(value, 'f', decimal).append(unit);
|
||||
}
|
||||
|
||||
QStringList DiveObjectHelper::weights() const
|
||||
|
|
Loading…
Reference in a new issue