summaryrefslogtreecommitdiffstats
path: root/qt-ui/profile/animationfunctions.h
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tcanabrava@kde.org>2014-02-07 17:59:21 -0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-02-08 07:21:13 -0800
commit0ad2a69c4234e23cbcdfe4ce2c498bd0bdeee611 (patch)
tree6d436ee18f87a74a0c36d02d7ecbe594f914e883 /qt-ui/profile/animationfunctions.h
parented72aabde57ece6556319db5a11db34dabb73710 (diff)
downloadsubsurface-0ad2a69c4234e23cbcdfe4ce2c498bd0bdeee611.tar.gz
Show the profile again.
This patch re-enables a few items on the profile, most notably, the profile itself. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/animationfunctions.h')
-rw-r--r--qt-ui/profile/animationfunctions.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/qt-ui/profile/animationfunctions.h b/qt-ui/profile/animationfunctions.h
index d5f900cb3..958e53c03 100644
--- a/qt-ui/profile/animationfunctions.h
+++ b/qt-ui/profile/animationfunctions.h
@@ -2,11 +2,14 @@
#define ANIMATIONFUNCTIONS_H
#include <QtGlobal>
+#include <QPointF>
+
class QObject;
namespace Animations{
void hide(QObject *obj);
void moveTo(QObject *obj, qreal x, qreal y, int msecs = 500);
+ void moveTo(QObject *obj, const QPointF& pos, int msecs = 500);
void animDelete(QObject *obj);
};