summaryrefslogtreecommitdiffstats
path: root/tests/auto/core/nodes/tst_nodes.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/core/nodes/tst_nodes.cpp')
-rw-r--r--tests/auto/core/nodes/tst_nodes.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/tests/auto/core/nodes/tst_nodes.cpp b/tests/auto/core/nodes/tst_nodes.cpp
index 973db6c0e..418625c31 100644
--- a/tests/auto/core/nodes/tst_nodes.cpp
+++ b/tests/auto/core/nodes/tst_nodes.cpp
@@ -169,7 +169,7 @@ public:
~MyQNode()
{
- QNode::cleanup();
+ QMetaObject::invokeMethod(this, "_q_cleanup", Qt::DirectConnection);
delete m_scene;
}
@@ -203,7 +203,7 @@ signals:
void customPropertyChanged();
protected:
- QT3D_CLONEABLE(MyQNode)
+ QT3D_CLONEABLE_CUSTOM_DTOR(MyQNode)
QString m_customProperty;
Qt3DCore::QScene *m_scene;
@@ -216,11 +216,6 @@ public:
explicit MyQComponent(Qt3DCore::QNode *parent = 0) : QComponent(parent)
{}
- ~MyQComponent()
- {
- QNode::cleanup();
- }
-
// QNode interface
protected:
QT3D_CLONEABLE(MyQComponent)