summaryrefslogtreecommitdiffstats
path: root/src/runtime/q3dsuippresentation_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/q3dsuippresentation_p.h')
-rw-r--r--src/runtime/q3dsuippresentation_p.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/runtime/q3dsuippresentation_p.h b/src/runtime/q3dsuippresentation_p.h
index e87a192..2e89a22 100644
--- a/src/runtime/q3dsuippresentation_p.h
+++ b/src/runtime/q3dsuippresentation_p.h
@@ -668,6 +668,7 @@ public:
Q_ENUM(PlayThrough)
using PropertyChanges = QHash<Q3DSGraphObject *, Q3DSPropertyChangeList *>;
+ using AnimationTrackList = QVector<Q3DSAnimationTrack>;
Q3DSSlide();
~Q3DSSlide();
@@ -685,7 +686,7 @@ public:
void removePropertyChanges(Q3DSGraphObject *target);
Q3DSPropertyChangeList *takePropertyChanges(Q3DSGraphObject *target);
- const QVector<Q3DSAnimationTrack> &animations() const { return m_anims; }
+ const AnimationTrackList &animations() const { return m_anims; }
void addAnimation(const Q3DSAnimationTrack &track);
void removeAnimation(const Q3DSAnimationTrack &track);
@@ -750,7 +751,7 @@ private:
QVariant m_playThroughValue;
QSet<Q3DSGraphObject *> m_objects;
PropertyChanges m_propChanges;
- QVector<Q3DSAnimationTrack> m_anims;
+ AnimationTrackList m_anims;
QVector<Q3DSAction> m_actions;
QVector<SlideGraphChangeCallback> m_slideGraphChangeCallbacks; // master only
QVector<SlideObjectChangeCallback> m_slideObjectChangeCallbacks;