mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Simplify: remove Maxcns and OTU variables
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
75561ff956
commit
6f95242ff1
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_maxcns(d->maxcns),
|
||||
m_otu(d->otu),
|
||||
m_dive(d)
|
||||
{
|
||||
struct dive_site *ds = get_dive_site_by_uuid(d->dive_site_uuid);
|
||||
|
@ -235,12 +233,12 @@ QString DiveObjectHelper::trip() const
|
|||
|
||||
QString DiveObjectHelper::maxcns() const
|
||||
{
|
||||
return m_maxcns;
|
||||
return QString(m_dive->maxcns);
|
||||
}
|
||||
|
||||
QString DiveObjectHelper::otu() const
|
||||
{
|
||||
return m_otu;
|
||||
return QString(m_dive->otu);
|
||||
}
|
||||
|
||||
int DiveObjectHelper::rating() const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue