summaryrefslogtreecommitdiffstats
path: root/src/animation/frontend/qabstractanimation.h
diff options
context:
space:
mode:
authorVolker Krause <volker.krause@kdab.com>2018-02-07 15:35:49 +0100
committerVolker Krause <volker.krause@kdab.com>2018-03-06 08:51:24 +0000
commit42a27f1a9ce319393a8e10a5f91b336e69fe2eb6 (patch)
tree03817af01fab8833162ca96e5b8d25d38e9f0c81 /src/animation/frontend/qabstractanimation.h
parent7ddb976ab22c5b75d3180e19ed4e27ff322a99af (diff)
Either fully qualify property types, or not at all
The semi-qualified types confuse the meta type system, QAbstractAnimation in particular, as that also exists as a top-level type. Change-Id: If20387fe76d46f88f6a89523d5d3f4aac8b1fef0 Reviewed-by: Svenn-Arne Dragly <svenn-arne.dragly@qt.io> Reviewed-by: Kevin Ottens <kevin.ottens@kdab.com>
Diffstat (limited to 'src/animation/frontend/qabstractanimation.h')
-rw-r--r--src/animation/frontend/qabstractanimation.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/animation/frontend/qabstractanimation.h b/src/animation/frontend/qabstractanimation.h
index 0c6fe865e..951e2dd2d 100644
--- a/src/animation/frontend/qabstractanimation.h
+++ b/src/animation/frontend/qabstractanimation.h
@@ -52,7 +52,7 @@ class QT3DANIMATIONSHARED_EXPORT QAbstractAnimation : public QObject
{
Q_OBJECT
Q_PROPERTY(QString animationName READ animationName WRITE setAnimationName NOTIFY animationNameChanged)
- Q_PROPERTY(QAbstractAnimation::AnimationType animationType READ animationType CONSTANT)
+ Q_PROPERTY(AnimationType animationType READ animationType CONSTANT)
Q_PROPERTY(float position READ position WRITE setPosition NOTIFY positionChanged)
Q_PROPERTY(float duration READ duration NOTIFY durationChanged)