summaryrefslogtreecommitdiffstats
path: root/src/animation/backend/channelmapper_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/animation/backend/channelmapper_p.h')
-rw-r--r--src/animation/backend/channelmapper_p.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/animation/backend/channelmapper_p.h b/src/animation/backend/channelmapper_p.h
index a2e9065a6..12b712719 100644
--- a/src/animation/backend/channelmapper_p.h
+++ b/src/animation/backend/channelmapper_p.h
@@ -71,10 +71,10 @@ public:
void syncFromFrontEnd(const Qt3DCore::QNode *frontEnd, bool firstTime) override;
- void setMappingIds(const QList<Qt3DCore::QNodeId> &mappingIds) { m_mappingIds = mappingIds; }
- QList<Qt3DCore::QNodeId> mappingIds() const { return m_mappingIds; }
+ void setMappingIds(const Qt3DCore::QNodeIdVector &mappingIds) { m_mappingIds = mappingIds; }
+ Qt3DCore::QNodeIdVector mappingIds() const { return m_mappingIds; }
- QList<ChannelMapping*> mappings() const
+ QVector<ChannelMapping*> mappings() const
{
if (m_isDirty)
updateMappings();
@@ -84,10 +84,10 @@ public:
private:
void updateMappings() const;
- QList<Qt3DCore::QNodeId> m_mappingIds;
+ Qt3DCore::QNodeIdVector m_mappingIds;
// Cached data
- mutable QList<ChannelMapping*> m_mappings;
+ mutable QVector<ChannelMapping*> m_mappings;
mutable bool m_isDirty;
};