summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/playground-qml/main.qml
diff options
context:
space:
mode:
authorFranck Arrecot <franck.arrecot@kdab.com>2016-03-09 14:48:28 +0100
committerFranck Arrecot <franck.arrecot@gmail.com>2016-03-16 10:16:16 +0000
commitb2a6f614e79164b534e36df484150ee8e27c57ad (patch)
tree9d2614908dc94861f42e47da210bb2e1fdc29dea /examples/qt3d/playground-qml/main.qml
parentb47e803ed2a8f3f9a3e6c02ed8e710f6e71ad8de (diff)
Class QKeyboardController rename to QKeyboardDevice
Task-number: QTBUG-51441 Change-Id: I030d7d60be0c4d543f773090eb866e8f8729512c Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'examples/qt3d/playground-qml/main.qml')
-rw-r--r--examples/qt3d/playground-qml/main.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/qt3d/playground-qml/main.qml b/examples/qt3d/playground-qml/main.qml
index 1440b2f06..59bd96a93 100644
--- a/examples/qt3d/playground-qml/main.qml
+++ b/examples/qt3d/playground-qml/main.qml
@@ -67,11 +67,11 @@ Entity {
}
}
- KeyboardController {id: keyboardController}
+ KeyboardDevice {id: keyboardDevice}
KeyboardHandler {
id: keyboardHandler
- sourceDevice: keyboardController
+ sourceDevice: keyboardDevice
focus: true
onTabPressed: root.detailCamera = !root.detailCamera;
}