diff options
Diffstat (limited to 'qt-ui/profile/animationfunctions.h')
-rw-r--r-- | qt-ui/profile/animationfunctions.h | 3 |
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); }; |