diff options
author | Thiago Macieira <thiago@macieira.org> | 2013-11-30 09:18:03 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-11-30 09:25:16 -0800 |
commit | bd7ded88940995ebbb46fc6983ba9cfd179e55e0 (patch) | |
tree | e32552e9de7ab7f1d2d8fe6cb33b17fb9462deb6 /qt-ui/diveplanner.h | |
parent | ba88a3358d2e8ed6b5486fff4c11bbef785ee959 (diff) | |
download | subsurface-bd7ded88940995ebbb46fc6983ba9cfd179e55e0.tar.gz |
Delete the graphics items for the ticks and labels in the ruler
Ruler::updateTicks() was creating them, but nothing deleted them.
Signed-off-by: Thiago Macieira <thiago@macieira.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/diveplanner.h')
-rw-r--r-- | qt-ui/diveplanner.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/qt-ui/diveplanner.h b/qt-ui/diveplanner.h index 81e36b02c..bc6f696ad 100644 --- a/qt-ui/diveplanner.h +++ b/qt-ui/diveplanner.h @@ -125,6 +125,7 @@ public slots: class Ruler : public QGraphicsLineItem{ public: Ruler(); + ~Ruler(); void setMinimum(double minimum); void setMaximum(double maximum); void setTickInterval(double interval); @@ -141,6 +142,8 @@ public: int unitSystem; private: + void eraseAll(); + Qt::Orientation orientation; QList<QGraphicsLineItem*> ticks; QList<QGraphicsSimpleTextItem*> labels; |