summaryrefslogtreecommitdiffstats
path: root/src/render/frontend/qrenderattachment.cpp
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@kdab.com>2014-10-15 13:38:32 +0200
committerSean Harmer <sean.harmer@kdab.com>2014-10-16 10:18:14 +0200
commitcd1d21fdad54315c4a8ade860ce6b31aa5a6f4b9 (patch)
treec1c042dfdb6c7fd8644c2e45a1cdad18b0703e57 /src/render/frontend/qrenderattachment.cpp
parent0f1d0ff5b3adb16afcda091e4ff4657f53581f79 (diff)
Have copy() only on QNode
It was previously both on QNode and QNodePrivate. The one on QNodePrivate didn't give us much as it didn't eliminate the virtual of QNode. Change-Id: Ia1ea9dd831674109c84bd7005abe7fde3b1223fa Reviewed-by: Paul Lemire <paul.lemire@kdab.com> Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/render/frontend/qrenderattachment.cpp')
-rw-r--r--src/render/frontend/qrenderattachment.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/render/frontend/qrenderattachment.cpp b/src/render/frontend/qrenderattachment.cpp
index d3cd769ea..cb55fa380 100644
--- a/src/render/frontend/qrenderattachment.cpp
+++ b/src/render/frontend/qrenderattachment.cpp
@@ -57,12 +57,12 @@ QRenderAttachmentPrivate::QRenderAttachmentPrivate(QRenderAttachment *qq)
{
}
-void QRenderAttachmentPrivate::copy(const QNodePrivate *ref)
+void QRenderAttachment::copy(const QNode *ref)
{
- QNodePrivate::copy(ref);
- const QRenderAttachmentPrivate *rA = static_cast<const QRenderAttachmentPrivate *>(ref);
- m_type = rA->m_type;
- q_func()->setTexture(qobject_cast<QTexture *>(QNodePrivate::get(rA->m_texture)->clone()));
+ QNode::copy(ref);
+ const QRenderAttachment *rA = static_cast<const QRenderAttachment*>(ref);
+ d_func()->m_type = rA->d_func()->m_type;
+ setTexture(qobject_cast<QTexture *>(QNodePrivate::get(rA->d_func()->m_texture)->clone()));
}
QRenderAttachment::QRenderAttachment(QNode *parent)