summaryrefslogtreecommitdiffstats
path: root/tests/auto/core/qaspectengine/tst_qaspectengine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/core/qaspectengine/tst_qaspectengine.cpp')
-rw-r--r--tests/auto/core/qaspectengine/tst_qaspectengine.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/core/qaspectengine/tst_qaspectengine.cpp b/tests/auto/core/qaspectengine/tst_qaspectengine.cpp
index 0f6a30c8e..69b7a916e 100644
--- a/tests/auto/core/qaspectengine/tst_qaspectengine.cpp
+++ b/tests/auto/core/qaspectengine/tst_qaspectengine.cpp
@@ -39,7 +39,7 @@
#include <Qt3DCore/qentity.h>
#include <Qt3DCore/qtransform.h>
-using namespace Qt3D;
+using namespace Qt3DCore;
class tst_QAspectEngine : public QObject
{
@@ -85,7 +85,7 @@ void tst_QAspectEngine::shouldNotCrashOnShutdownWhenComponentIsCreatedWithParent
// GIVEN
QEntity *root = new QEntity;
// A component parented to an entity...
- QComponent *component = new Qt3D::QTransform(root);
+ QComponent *component = new Qt3DCore::QTransform(root);
// ... created *before* the entity it will be added to.
QEntity *entity = new QEntity(root);
entity->addComponent(component);