diff options
Diffstat (limited to 'core/subsurface-qt/DiveObjectHelper.h')
-rw-r--r-- | core/subsurface-qt/DiveObjectHelper.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/subsurface-qt/DiveObjectHelper.h b/core/subsurface-qt/DiveObjectHelper.h index 118197ac3..d36ef550e 100644 --- a/core/subsurface-qt/DiveObjectHelper.h +++ b/core/subsurface-qt/DiveObjectHelper.h @@ -46,8 +46,8 @@ class DiveObjectHelper : public QObject { Q_PROPERTY(int otu READ otu CONSTANT) Q_PROPERTY(QString sumWeight READ sumWeight CONSTANT) Q_PROPERTY(QStringList getCylinder READ getCylinder CONSTANT) - Q_PROPERTY(QString startPressure READ startPressure CONSTANT) - Q_PROPERTY(QString endPressure READ endPressure CONSTANT) + Q_PROPERTY(QStringList startPressure READ startPressure CONSTANT) + Q_PROPERTY(QStringList endPressure READ endPressure CONSTANT) Q_PROPERTY(QStringList firstGas READ firstGas CONSTANT) public: DiveObjectHelper(struct dive *dive = NULL); @@ -90,8 +90,8 @@ public: int otu() const; QString sumWeight() const; QStringList getCylinder() const; - QString startPressure() const; - QString endPressure() const; + QStringList startPressure() const; + QStringList endPressure() const; QStringList firstGas() const; private: |