summaryrefslogtreecommitdiffstats
path: root/src/declarative/util/qmltransition.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/declarative/util/qmltransition.h')
-rw-r--r--src/declarative/util/qmltransition.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/declarative/util/qmltransition.h b/src/declarative/util/qmltransition.h
index 8ccb0ec..39b35ba 100644
--- a/src/declarative/util/qmltransition.h
+++ b/src/declarative/util/qmltransition.h
@@ -64,8 +64,8 @@ class Q_DECLARATIVE_EXPORT QmlTransition : public QObject
Q_PROPERTY(QString fromState READ fromState WRITE setFromState)
Q_PROPERTY(QString toState READ toState WRITE setToState)
Q_PROPERTY(bool reversible READ reversible WRITE setReversible)
- Q_PROPERTY(QmlList<QmlAbstractAnimation *>* operations READ operations)
- Q_CLASSINFO("DefaultProperty", "operations")
+ Q_PROPERTY(QmlList<QmlAbstractAnimation *>* animations READ animations)
+ Q_CLASSINFO("DefaultProperty", "animations")
public:
QmlTransition(QObject *parent=0);
@@ -80,7 +80,7 @@ public:
bool reversible() const;
void setReversible(bool);
- QmlList<QmlAbstractAnimation *>* operations();
+ QmlList<QmlAbstractAnimation *>* animations();
void prepare(QmlStateOperation::ActionList &actions,
QList<QmlMetaProperty> &after,