summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/dynamicscene-cpp/boxentity.cpp
diff options
context:
space:
mode:
authorSean Harmer <sean.harmer@kdab.com>2015-08-31 15:14:17 +0100
committerSean Harmer <sean.harmer@kdab.com>2015-10-13 07:15:15 +0000
commitaf40840eedf35404ba4b39e890c158e2328ff6ec (patch)
treece4ac1f925c34b56704c99bd332e0436e68dbecc /examples/qt3d/dynamicscene-cpp/boxentity.cpp
parent0269afd106da5d4d999585b3bdb1332a2c01af12 (diff)
Move Render aspect into the Qt3DRender namespace
Updated examples and tests accordingly. Change-Id: I8848a88472de2302aa072fa11f21ea934672b7e6 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'examples/qt3d/dynamicscene-cpp/boxentity.cpp')
-rw-r--r--examples/qt3d/dynamicscene-cpp/boxentity.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/qt3d/dynamicscene-cpp/boxentity.cpp b/examples/qt3d/dynamicscene-cpp/boxentity.cpp
index a3f539564..9b35c2316 100644
--- a/examples/qt3d/dynamicscene-cpp/boxentity.cpp
+++ b/examples/qt3d/dynamicscene-cpp/boxentity.cpp
@@ -42,8 +42,8 @@ BoxEntity::BoxEntity(QNode *parent)
: Qt3D::QEntity(parent)
, m_transform(new Qt3D::QTransform())
, m_translate(new Qt3D::QTranslateTransform())
- , m_mesh(new Qt3D::QCuboidMesh())
- , m_material(new Qt3D::QPhongMaterial())
+ , m_mesh(new Qt3DRender::QCuboidMesh())
+ , m_material(new Qt3DRender::QPhongMaterial())
, m_angle(0.0f)
, m_radius(1.0f)
{