diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2009-11-02 01:31:42 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2009-11-02 01:31:42 (GMT) |
commit | 6991cf4fe678427aec370f1abb217591987d3a7e (patch) | |
tree | daf2a6558dd228aa6595e6e3a00f3a30379b29e1 /src/corelib | |
parent | f914536c1c472cd7e0e21252c83447da7618c2cb (diff) | |
download | Qt-6991cf4fe678427aec370f1abb217591987d3a7e.zip Qt-6991cf4fe678427aec370f1abb217591987d3a7e.tar.gz Qt-6991cf4fe678427aec370f1abb217591987d3a7e.tar.bz2 |
Add missing QENUM declarations (needed by declarative).
Diffstat (limited to 'src/corelib')
-rw-r--r-- | src/corelib/animation/qabstractanimation.h | 2 |
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) |