summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2009-10-20 23:16:48 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2009-10-21 01:43:24 (GMT)
commit2f1f614aec6011a60102f2ca45980fb9b62a2e2c (patch)
tree9354ba9b41a84c3de84a00ccccf3f13bce08cb45 /src
parentdb6a53356aa72e59fcbc631c5cde77c14d51acc1 (diff)
downloadQt-2f1f614aec6011a60102f2ca45980fb9b62a2e2c.zip
Qt-2f1f614aec6011a60102f2ca45980fb9b62a2e2c.tar.gz
Qt-2f1f614aec6011a60102f2ca45980fb9b62a2e2c.tar.bz2
Add missing Q_OBJECT macros.
Diffstat (limited to 'src')
-rw-r--r--src/declarative/util/qmlanimation_p.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/declarative/util/qmlanimation_p.h b/src/declarative/util/qmlanimation_p.h
index 4f6edb7..22c4e2d 100644
--- a/src/declarative/util/qmlanimation_p.h
+++ b/src/declarative/util/qmlanimation_p.h
@@ -92,6 +92,7 @@ private:
//performs an action of type QAbstractAnimationAction
class QActionAnimation : public QAbstractAnimation
{
+ Q_OBJECT
public:
QActionAnimation(QObject *parent = 0) : QAbstractAnimation(parent), animAction(0), policy(KeepWhenStopped) {}
QActionAnimation(QAbstractAnimationAction *action, QObject *parent = 0)
@@ -126,6 +127,7 @@ private:
//animates QmlTimeLineValue (assumes start and end values will be reals or compatible)
class QmlTimeLineValueAnimator : public QVariantAnimation
{
+ Q_OBJECT
public:
QmlTimeLineValueAnimator(QObject *parent = 0) : QVariantAnimation(parent), animValue(0), fromSourced(0), policy(KeepWhenStopped) {}
void setAnimValue(QmlTimeLineValue *value, DeletionPolicy p)