summaryrefslogtreecommitdiffstats
path: root/src/animation/frontend/qclipblendnodecreatedchange.cpp
diff options
context:
space:
mode:
authorSean Harmer <sean.harmer@kdab.com>2017-03-24 13:21:25 +0000
committerSean Harmer <sean.harmer@kdab.com>2017-03-26 07:29:29 +0000
commit9a5139a2b59ac27afa190caa46ba22138f9dfa6c (patch)
treee0ceb21228fd923aa72cdeb87d637377ae92060a /src/animation/frontend/qclipblendnodecreatedchange.cpp
parent78280da782ea8c1882afe18ee611aa199e914418 (diff)
Remove clips property from QAbstractClipBlendNode and friends
No longer needed as concrete subclasses each provide their own specific APIs for managing clips or sub trees. Change-Id: I8e090bcf18ad9bf0d19e36128d7556aaa6cd6edf Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/animation/frontend/qclipblendnodecreatedchange.cpp')
-rw-r--r--src/animation/frontend/qclipblendnodecreatedchange.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/animation/frontend/qclipblendnodecreatedchange.cpp b/src/animation/frontend/qclipblendnodecreatedchange.cpp
index 72266ade4..9251442bb 100644
--- a/src/animation/frontend/qclipblendnodecreatedchange.cpp
+++ b/src/animation/frontend/qclipblendnodecreatedchange.cpp
@@ -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