summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/visual/focusscope/test3.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/visual/focusscope/test3.qml')
-rw-r--r--tests/auto/declarative/visual/focusscope/test3.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/declarative/visual/focusscope/test3.qml b/tests/auto/declarative/visual/focusscope/test3.qml
index b5feeb5..4be9dc7 100644
--- a/tests/auto/declarative/visual/focusscope/test3.qml
+++ b/tests/auto/declarative/visual/focusscope/test3.qml
@@ -23,10 +23,10 @@ Rectangle {
FocusScope {
id: Root
width: 50; height: 50;
- Keys.onDigit9Pressed: print("Error - " + name)
+ Keys.onDigit9Pressed: console.log("Error - " + name)
Rectangle {
focus: true
- Keys.onDigit9Pressed: print(name)
+ Keys.onDigit9Pressed: console.log(name)
width: 50; height: 50;
color: Root.ListView.isCurrentItem?"red":"green"
Text { text: name; anchors.centerIn: parent }