summaryrefslogtreecommitdiffstats
path: root/qt-ui/profile/diveprofileitem.cpp
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tomaz.canabrava@intel.com>2014-12-30 21:13:50 -0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-12-30 16:12:49 -0800
commitc7a5d816839d05dd97eac5bec6fa3e095479510b (patch)
tree992138b96118beeef61088b5d7a9e30ce19ce3f8 /qt-ui/profile/diveprofileitem.cpp
parent146030f805ab80d56282996ad830e1583fa9679c (diff)
downloadsubsurface-c7a5d816839d05dd97eac5bec6fa3e095479510b.tar.gz
Set data model for the MeanDepth line
This way we can poke around data for the mean depth line. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/diveprofileitem.cpp')
-rw-r--r--qt-ui/profile/diveprofileitem.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/qt-ui/profile/diveprofileitem.cpp b/qt-ui/profile/diveprofileitem.cpp
index d96059173..1d930ad6a 100644
--- a/qt-ui/profile/diveprofileitem.cpp
+++ b/qt-ui/profile/diveprofileitem.cpp
@@ -822,6 +822,10 @@ MeanDepthLine::MeanDepthLine() : meanDepth(0), leftText(new DiveTextItem(this)),
rightText->setPos(line().length(), 0);
}
+void MeanDepthLine::setModel(DivePlotDataModel *m){
+ model = m;
+}
+
void MeanDepthLine::setLine(qreal x1, qreal y1, qreal x2, qreal y2)
{
QGraphicsLineItem::setLine(x1, y1, x2, y2);