summaryrefslogtreecommitdiffstats
path: root/tests/auto/core/qaspectengine/tst_qaspectengine.cpp
diff options
context:
space:
mode:
authorSean Harmer <sean.harmer@kdab.com>2015-10-12 20:45:19 +0100
committerPaul Lemire <paul.lemire@kdab.com>2015-10-13 13:19:50 +0000
commit7c971e0e7791ab38d7d3d8ebc25468c44cbe49c5 (patch)
tree53197a9e5eb7501d6f5b497f70c25dad9c265a6f /tests/auto/core/qaspectengine/tst_qaspectengine.cpp
parent0bfd20ad3b8eb3edec8d6317af9eb5504f8c0871 (diff)
Move Qt3DCore into Qt3DCore namespace
Update other aspects, tests and examples accordingly. Change-Id: Ib1bcf0bdf4f5aec4422dc0c80bfc32b27fb1a317 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
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);