mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Cleanup: remove DiveObjectHelper::trip() function
The DiveObjectHelper::trip() function was 1) Misnamed: it returned the *location* of the trip 2) Not used outside of DiveObjectHelper Remove it. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
9e565e3552
commit
a863386cd4
2 changed files with 2 additions and 8 deletions
|
@ -324,11 +324,6 @@ QList<CylinderObjectHelper*> DiveObjectHelper::cylinderObjects() const
|
||||||
return m_cyls;
|
return m_cyls;
|
||||||
}
|
}
|
||||||
|
|
||||||
QString DiveObjectHelper::trip() const
|
|
||||||
{
|
|
||||||
return m_dive->divetrip ? m_dive->divetrip->location : EMPTY_DIVE_STRING;
|
|
||||||
}
|
|
||||||
|
|
||||||
// combine the pointer address with the trip title so that
|
// combine the pointer address with the trip title so that
|
||||||
// we detect multiple, destinct trips with the same title
|
// we detect multiple, destinct trips with the same title
|
||||||
// the trip title is designed to be
|
// the trip title is designed to be
|
||||||
|
@ -448,5 +443,6 @@ QString DiveObjectHelper::fullText() const
|
||||||
|
|
||||||
QString DiveObjectHelper::fullTextNoNotes() const
|
QString DiveObjectHelper::fullTextNoNotes() const
|
||||||
{
|
{
|
||||||
return trip() + ":-:" + location() + ":-:" + buddy() + ":-:" + divemaster() + ":-:" + suit() + ":-:" + tags();
|
QString tripLocation = m_dive->divetrip ? m_dive->divetrip->location : EMPTY_DIVE_STRING;
|
||||||
|
return tripLocation + ":-:" + location() + ":-:" + buddy() + ":-:" + divemaster() + ":-:" + suit() + ":-:" + tags();
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,6 @@ class DiveObjectHelper : public QObject {
|
||||||
Q_PROPERTY(QStringList cylinderList READ cylinderList CONSTANT)
|
Q_PROPERTY(QStringList cylinderList READ cylinderList CONSTANT)
|
||||||
Q_PROPERTY(QStringList cylinders READ cylinders CONSTANT)
|
Q_PROPERTY(QStringList cylinders READ cylinders CONSTANT)
|
||||||
Q_PROPERTY(QList<CylinderObjectHelper*> cylinderObjects READ cylinderObjects CONSTANT)
|
Q_PROPERTY(QList<CylinderObjectHelper*> cylinderObjects READ cylinderObjects CONSTANT)
|
||||||
Q_PROPERTY(QString trip READ trip CONSTANT)
|
|
||||||
Q_PROPERTY(QString tripMeta READ tripMeta CONSTANT)
|
Q_PROPERTY(QString tripMeta READ tripMeta CONSTANT)
|
||||||
Q_PROPERTY(int tripNrDives READ tripNrDives CONSTANT)
|
Q_PROPERTY(int tripNrDives READ tripNrDives CONSTANT)
|
||||||
Q_PROPERTY(int maxcns READ maxcns CONSTANT)
|
Q_PROPERTY(int maxcns READ maxcns CONSTANT)
|
||||||
|
@ -86,7 +85,6 @@ public:
|
||||||
QStringList cylinders() const;
|
QStringList cylinders() const;
|
||||||
QString cylinder(int idx) const;
|
QString cylinder(int idx) const;
|
||||||
QList<CylinderObjectHelper*> cylinderObjects() const;
|
QList<CylinderObjectHelper*> cylinderObjects() const;
|
||||||
QString trip() const;
|
|
||||||
QString tripMeta() const;
|
QString tripMeta() const;
|
||||||
int tripNrDives() const;
|
int tripNrDives() const;
|
||||||
int maxcns() const;
|
int maxcns() const;
|
||||||
|
|
Loading…
Add table
Reference in a new issue