summaryrefslogtreecommitdiffstats
path: root/src/quick3d/imports/scene3d/scene3ditem.cpp
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.agocs@qt.io>2017-03-31 12:16:41 +0200
committerLaszlo Agocs <laszlo.agocs@qt.io>2017-03-31 13:23:29 +0000
commit3e664bf438d4a3ab9a5f1633f2db171632b777b8 (patch)
treef03de4697b7ad503c1554d1fba1fd29b9ade62d7 /src/quick3d/imports/scene3d/scene3ditem.cpp
parentacde192b771f1baa2f01cac30c18ac9ce7054b28 (diff)
Change some Scene3D/Window qWarnings to qCDebugv5.9.0-beta1
None of these is fatal. It is perfectly possible to get input via other means, for example. Change-Id: I7880c8f5aa611908d7e09d03fe0c8100f8c8d183 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/quick3d/imports/scene3d/scene3ditem.cpp')
-rw-r--r--src/quick3d/imports/scene3d/scene3ditem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/quick3d/imports/scene3d/scene3ditem.cpp b/src/quick3d/imports/scene3d/scene3ditem.cpp
index 4a5c959c4..2c3cc4384 100644
--- a/src/quick3d/imports/scene3d/scene3ditem.cpp
+++ b/src/quick3d/imports/scene3d/scene3ditem.cpp
@@ -179,7 +179,7 @@ void Scene3DItem::applyRootEntityChange()
QList<Qt3DRender::QCamera *> cameras
= m_entity->findChildren<Qt3DRender::QCamera *>();
if (cameras.isEmpty()) {
- qWarning() << "No camera found and automatic aspect ratio requested";
+ qCDebug(Scene3D) << "No camera found and automatic aspect ratio requested";
} else {
m_camera = cameras.first();
setCameraAspectModeHelper();
@@ -191,7 +191,7 @@ void Scene3DItem::applyRootEntityChange()
if (inputSettings) {
inputSettings->setEventSource(this);
} else {
- qWarning() << "No Input Settings found, keyboard and mouse events won't be handled";
+ qCDebug(Scene3D) << "No Input Settings found, keyboard and mouse events won't be handled";
}
}
}