mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-01 06:30:26 +00:00
Simplify: removed duration and depth variables
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
ae222f147c
commit
0bb661c3e1
2 changed files with 2 additions and 6 deletions
|
@ -34,8 +34,6 @@ static QString getFormattedCylinder(struct dive *dive, unsigned int idx)
|
|||
}
|
||||
|
||||
DiveObjectHelper::DiveObjectHelper(struct dive *d) :
|
||||
m_duration(get_dive_duration_string(d->duration.seconds, QObject::tr("h:"), QObject::tr("min"))),
|
||||
m_depth(get_depth_string(d->dc.maxdepth.mm, true, true)),
|
||||
m_divemaster(d->divemaster ? d->divemaster : EMPTY_DIVE_STRING),
|
||||
m_buddy(d->buddy ? d->buddy : EMPTY_DIVE_STRING),
|
||||
m_airTemp(get_temperature_string(d->airtemp, true)),
|
||||
|
@ -158,12 +156,12 @@ QString DiveObjectHelper::gps() const
|
|||
}
|
||||
QString DiveObjectHelper::duration() const
|
||||
{
|
||||
return m_duration;
|
||||
return get_dive_duration_string(m_dive->duration.seconds, QObject::tr("h:"), QObject::tr("min"));
|
||||
}
|
||||
|
||||
QString DiveObjectHelper::depth() const
|
||||
{
|
||||
return m_depth;
|
||||
return get_depth_string(m_dive->dc.maxdepth.mm, true, true);
|
||||
}
|
||||
|
||||
QString DiveObjectHelper::divemaster() const
|
||||
|
|
|
@ -65,8 +65,6 @@ private:
|
|||
QString m_date;
|
||||
QString m_time;
|
||||
QString m_gps;
|
||||
QString m_duration;
|
||||
QString m_depth;
|
||||
QString m_divemaster;
|
||||
QString m_buddy;
|
||||
QString m_airTemp;
|
||||
|
|
Loading…
Reference in a new issue