summaryrefslogtreecommitdiffstats
path: root/core/subsurface-qt/DiveObjectHelper.cpp
diff options
context:
space:
mode:
authorGravatar Tim Wootton <tim@tee-jay.org.uk>2016-07-18 23:08:27 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-07-23 10:50:15 +0900
commitd0e2ff578aa612c6dd9320d831e068ded1202675 (patch)
tree494734a245a962867960b4ccad6d71f916e610fd /core/subsurface-qt/DiveObjectHelper.cpp
parent2cffb77d19e6ed7f3f5b26db8b68490159486f93 (diff)
downloadsubsurface-d0e2ff578aa612c6dd9320d831e068ded1202675.tar.gz
Let cns and otu return ints rather than QStrings
This way they display correctly when accessed from grantlee template Fixes #1085 Signed-off-by: Tim Wootton <tim@tee-jay.org.uk> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/subsurface-qt/DiveObjectHelper.cpp')
-rw-r--r--core/subsurface-qt/DiveObjectHelper.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/subsurface-qt/DiveObjectHelper.cpp b/core/subsurface-qt/DiveObjectHelper.cpp
index fc406d600..1c7621e10 100644
--- a/core/subsurface-qt/DiveObjectHelper.cpp
+++ b/core/subsurface-qt/DiveObjectHelper.cpp
@@ -306,14 +306,14 @@ QString DiveObjectHelper::tripMeta() const
return ret;
}
-QString DiveObjectHelper::maxcns() const
+int DiveObjectHelper::maxcns() const
{
- return QString(m_dive->maxcns);
+ return m_dive->maxcns;
}
-QString DiveObjectHelper::otu() const
+int DiveObjectHelper::otu() const
{
- return QString(m_dive->otu);
+ return m_dive->otu;
}
int DiveObjectHelper::rating() const