summaryrefslogtreecommitdiffstats
path: root/src/render/frontend/framegraph-components/qframegraphnode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/frontend/framegraph-components/qframegraphnode.cpp')
-rw-r--r--src/render/frontend/framegraph-components/qframegraphnode.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/render/frontend/framegraph-components/qframegraphnode.cpp b/src/render/frontend/framegraph-components/qframegraphnode.cpp
index fadf049b8..edf4c127e 100644
--- a/src/render/frontend/framegraph-components/qframegraphnode.cpp
+++ b/src/render/frontend/framegraph-components/qframegraphnode.cpp
@@ -56,14 +56,14 @@ namespace Qt3D {
\class Qt3D::QFrameGraphNodePrivate
\internal
*/
-QFrameGraphNodePrivate::QFrameGraphNodePrivate(QFrameGraphNode *qq)
- : QNodePrivate(qq)
+QFrameGraphNodePrivate::QFrameGraphNodePrivate()
+ : QNodePrivate()
, m_enabled(true)
{
}
QFrameGraphNode::QFrameGraphNode(QNode *parent)
- : QNode(*new QFrameGraphNodePrivate(this), parent)
+ : QNode(*new QFrameGraphNodePrivate, parent)
{
}