summaryrefslogtreecommitdiffstats
path: root/src/declarative/util/qmlanimation.h
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2009-08-21 04:33:38 (GMT)
committerMartin Jones <martin.jones@nokia.com>2009-08-21 04:33:38 (GMT)
commit8598114e3379df3a73d4ccc7760e3761ed55edf0 (patch)
tree9c8da15646795f34a194a7aa5485dce95dcd40e0 /src/declarative/util/qmlanimation.h
parentbc5b2b8ea1259bffdbdafe9d509fc675476fdb97 (diff)
downloadQt-8598114e3379df3a73d4ccc7760e3761ed55edf0.zip
Qt-8598114e3379df3a73d4ccc7760e3761ed55edf0.tar.gz
Qt-8598114e3379df3a73d4ccc7760e3761ed55edf0.tar.bz2
SetPropertyAction -> PropertyAction
Diffstat (limited to 'src/declarative/util/qmlanimation.h')
-rw-r--r--src/declarative/util/qmlanimation.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/declarative/util/qmlanimation.h b/src/declarative/util/qmlanimation.h
index e27c899..f5180a5 100644
--- a/src/declarative/util/qmlanimation.h
+++ b/src/declarative/util/qmlanimation.h
@@ -186,11 +186,11 @@ protected:
virtual QAbstractAnimation *qtAnimation();
};
-class QmlSetPropertyActionPrivate;
-class QmlSetPropertyAction : public QmlAbstractAnimation
+class QmlPropertyActionPrivate;
+class QmlPropertyAction : public QmlAbstractAnimation
{
Q_OBJECT
- Q_DECLARE_PRIVATE(QmlSetPropertyAction)
+ Q_DECLARE_PRIVATE(QmlPropertyAction)
Q_PROPERTY(QObject *target READ target WRITE setTarget NOTIFY targetChanged)
Q_PROPERTY(QString property READ property WRITE setProperty NOTIFY targetChanged)
@@ -200,8 +200,8 @@ class QmlSetPropertyAction : public QmlAbstractAnimation
Q_PROPERTY(QVariant value READ value WRITE setValue NOTIFY valueChanged)
public:
- QmlSetPropertyAction(QObject *parent=0);
- virtual ~QmlSetPropertyAction();
+ QmlPropertyAction(QObject *parent=0);
+ virtual ~QmlPropertyAction();
QString properties() const;
void setProperties(const QString &);
@@ -396,7 +396,7 @@ QT_END_NAMESPACE
QML_DECLARE_TYPE(QmlAbstractAnimation)
QML_DECLARE_TYPE(QmlPauseAnimation)
QML_DECLARE_TYPE(QmlScriptAction)
-QML_DECLARE_TYPE(QmlSetPropertyAction)
+QML_DECLARE_TYPE(QmlPropertyAction)
QML_DECLARE_TYPE(QmlParentAction)
QML_DECLARE_TYPE(QmlPropertyAnimation)
QML_DECLARE_TYPE(QmlColorAnimation)