summaryrefslogtreecommitdiffstats
path: root/src/corelib/animation
diff options
context:
space:
mode:
authorWarwick Allison <warwick.allison@nokia.com>2009-11-02 01:31:42 (GMT)
committerWarwick Allison <warwick.allison@nokia.com>2009-11-02 01:31:42 (GMT)
commit6991cf4fe678427aec370f1abb217591987d3a7e (patch)
treedaf2a6558dd228aa6595e6e3a00f3a30379b29e1 /src/corelib/animation
parentf914536c1c472cd7e0e21252c83447da7618c2cb (diff)
downloadQt-6991cf4fe678427aec370f1abb217591987d3a7e.zip
Qt-6991cf4fe678427aec370f1abb217591987d3a7e.tar.gz
Qt-6991cf4fe678427aec370f1abb217591987d3a7e.tar.bz2
Add missing QENUM declarations (needed by declarative).
Diffstat (limited to 'src/corelib/animation')
-rw-r--r--src/corelib/animation/qabstractanimation.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/corelib/animation/qabstractanimation.h b/src/corelib/animation/qabstractanimation.h
index 50b07d7..3d608b6 100644
--- a/src/corelib/animation/qabstractanimation.h
+++ b/src/corelib/animation/qabstractanimation.h
@@ -59,6 +59,8 @@ class QAbstractAnimationPrivate;
class Q_CORE_EXPORT QAbstractAnimation : public QObject
{
Q_OBJECT
+ Q_ENUMS(State)
+ Q_ENUMS(Direction)
Q_PROPERTY(State state READ state NOTIFY stateChanged)
Q_PROPERTY(int loopCount READ loopCount WRITE setLoopCount)
Q_PROPERTY(int currentTime READ currentTime WRITE setCurrentTime)