summaryrefslogtreecommitdiffstats
path: root/src/animation/frontend/qclipblendnodecreatedchange.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/animation/frontend/qclipblendnodecreatedchange.cpp')
-rw-r--r--src/animation/frontend/qclipblendnodecreatedchange.cpp17
1 files changed, 1 insertions, 16 deletions
diff --git a/src/animation/frontend/qclipblendnodecreatedchange.cpp b/src/animation/frontend/qclipblendnodecreatedchange.cpp
index 9e9104066..9251442bb 100644
--- a/src/animation/frontend/qclipblendnodecreatedchange.cpp
+++ b/src/animation/frontend/qclipblendnodecreatedchange.cpp
@@ -37,7 +37,7 @@
#include "qclipblendnodecreatedchange.h"
#include "qclipblendnodecreatedchange_p.h"
#include <Qt3DAnimation/qabstractclipblendnode.h>
-#include <Qt3DAnimation/qanimationclip.h>
+#include <Qt3DAnimation/qabstractanimationclip.h>
QT_BEGIN_NAMESPACE
@@ -45,8 +45,6 @@ namespace Qt3DAnimation {
QClipBlendNodeCreatedChangeBasePrivate::QClipBlendNodeCreatedChangeBasePrivate(const QAbstractClipBlendNode *node)
: Qt3DCore::QNodeCreatedChangeBasePrivate(node)
- , m_parentClipBlendNodeId(Qt3DCore::qIdForNode(node->parentClipBlendNode()))
- , m_clips(Qt3DCore::qIdsForNodes(node->clips()))
{
}
@@ -59,19 +57,6 @@ QClipBlendNodeCreatedChangeBase::~QClipBlendNodeCreatedChangeBase()
{
}
-Qt3DCore::QNodeId QClipBlendNodeCreatedChangeBase::parentClipBlendNodeId() const
-{
- Q_D(const QClipBlendNodeCreatedChangeBase);
- return d->m_parentClipBlendNodeId;
-}
-
-Qt3DCore::QNodeIdVector QClipBlendNodeCreatedChangeBase::clips() const
-{
- Q_D(const QClipBlendNodeCreatedChangeBase);
- return d->m_clips;
-}
-
-
} // Qt3DAnimation
QT_END_NAMESPACE