summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/gooch-qml
diff options
context:
space:
mode:
authorSean Harmer <sean.harmer@kdab.com>2015-10-15 15:05:37 +0100
committerPaul Lemire <paul.lemire@kdab.com>2015-10-16 10:35:56 +0000
commit8944db9302fcf74ac5869da514de61d6a7a3880d (patch)
tree200dd80eebcd2ea77269bdb048c74b960d3c1556 /examples/qt3d/gooch-qml
parent4d999de567dae22c0e92f77b897d9a22be2f98db (diff)
Change import name of Qt3D Core from Qt3D 2.0 to Qt3D.Core 2.0
Makes the QML imports consistent with the C++ namespaces. Change-Id: I8c781a67a9010124bd22bb1fab16c4f1082fd962 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'examples/qt3d/gooch-qml')
-rw-r--r--examples/qt3d/gooch-qml/MyEntity.qml2
-rw-r--r--examples/qt3d/gooch-qml/main.qml2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/qt3d/gooch-qml/MyEntity.qml b/examples/qt3d/gooch-qml/MyEntity.qml
index 0bd449f1a..875da96f4 100644
--- a/examples/qt3d/gooch-qml/MyEntity.qml
+++ b/examples/qt3d/gooch-qml/MyEntity.qml
@@ -34,7 +34,7 @@
**
****************************************************************************/
-import Qt3D 2.0
+import Qt3D.Core 2.0
import Qt3D.Renderer 2.0
Entity {
diff --git a/examples/qt3d/gooch-qml/main.qml b/examples/qt3d/gooch-qml/main.qml
index 7fb070153..60b722403 100644
--- a/examples/qt3d/gooch-qml/main.qml
+++ b/examples/qt3d/gooch-qml/main.qml
@@ -34,7 +34,7 @@
**
****************************************************************************/
-import Qt3D 2.0
+import Qt3D.Core 2.0
import Qt3D.Renderer 2.0
import QtQuick 2.2 as QQ2