diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-06-26 01:16:57 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-06-26 02:04:36 (GMT) |
commit | ffc9e62cbf7e24cd04a1202de1b3e618f9e12642 (patch) | |
tree | faf828900c05b748e39158eb6a1fb59c44ba3763 /src/declarative/util/qmlanimation.h | |
parent | 662488175fb9c6a44e9641867177b5396c507891 (diff) | |
download | Qt-ffc9e62cbf7e24cd04a1202de1b3e618f9e12642.zip Qt-ffc9e62cbf7e24cd04a1202de1b3e618f9e12642.tar.gz Qt-ffc9e62cbf7e24cd04a1202de1b3e618f9e12642.tar.bz2 |
Rename NumericAnimation -> NumberAnimation
Diffstat (limited to 'src/declarative/util/qmlanimation.h')
-rw-r--r-- | src/declarative/util/qmlanimation.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/declarative/util/qmlanimation.h b/src/declarative/util/qmlanimation.h index a91394d..110c43e 100644 --- a/src/declarative/util/qmlanimation.h +++ b/src/declarative/util/qmlanimation.h @@ -317,7 +317,7 @@ public: }; QML_DECLARE_TYPE(QmlColorAnimation) -class QmlNumericAnimation : public QmlPropertyAnimation +class QmlNumberAnimation : public QmlPropertyAnimation { Q_OBJECT Q_DECLARE_PRIVATE(QmlPropertyAnimation) @@ -326,8 +326,8 @@ class QmlNumericAnimation : public QmlPropertyAnimation Q_PROPERTY(qreal to READ to WRITE setTo NOTIFY toChanged) public: - QmlNumericAnimation(QObject *parent=0); - virtual ~QmlNumericAnimation(); + QmlNumberAnimation(QObject *parent=0); + virtual ~QmlNumberAnimation(); qreal from() const; void setFrom(qreal); @@ -335,7 +335,7 @@ public: qreal to() const; void setTo(qreal); }; -QML_DECLARE_TYPE(QmlNumericAnimation) +QML_DECLARE_TYPE(QmlNumberAnimation) class QmlAnimationGroupPrivate; class QmlAnimationGroup : public QmlAbstractAnimation |