aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/profile/divetextitem.cpp
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tomaz.canabrava@intel.com>2014-07-11 19:13:01 -0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-07-11 17:01:12 -0700
commite18f4dfdeecfb8fdc3cf7bcb7168d84613d4fc7b (patch)
treec498c5401d2601b3128499b30136997796b2f487 /qt-ui/profile/divetextitem.cpp
parent2171b981ac5a827e732cadefabf8a09762a8c45c (diff)
downloadsubsurface-e18f4dfdeecfb8fdc3cf7bcb7168d84613d4fc7b.tar.gz
Code cleanup: removed bogus animation functions
All animations are now on the Animations namespace, which resulted in a bit of code cleanup, which is nice. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/divetextitem.cpp')
-rw-r--r--qt-ui/profile/divetextitem.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/qt-ui/profile/divetextitem.cpp b/qt-ui/profile/divetextitem.cpp
index c2ba2efc4..fad35eb2f 100644
--- a/qt-ui/profile/divetextitem.cpp
+++ b/qt-ui/profile/divetextitem.cpp
@@ -94,13 +94,3 @@ void DiveTextItem::updateText()
textItem->setBrush(brush);
textItem->setPen(Qt::NoPen);
}
-
-void DiveTextItem::animatedHide()
-{
- Animations::hide(this);
-}
-
-void DiveTextItem::animateMoveTo(qreal x, qreal y)
-{
- Animations::moveTo(this, x, y);
-}