diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2009-11-23 04:26:49 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2009-11-23 04:26:49 (GMT) |
commit | 3c4df26a8d184b728395c8aad26b05626176b7b5 (patch) | |
tree | 8c5a16a3822f61fbeb0b2405009aeab480ffe98b /tests/auto/declarative/qmlgraphicsrepeater/data | |
parent | a8549cfee8b6ec393dcea6314e6ac7d6c102dc07 (diff) | |
download | Qt-3c4df26a8d184b728395c8aad26b05626176b7b5.zip Qt-3c4df26a8d184b728395c8aad26b05626176b7b5.tar.gz Qt-3c4df26a8d184b728395c8aad26b05626176b7b5.tar.bz2 |
Use console.log, not print.
Diffstat (limited to 'tests/auto/declarative/qmlgraphicsrepeater/data')
-rw-r--r-- | tests/auto/declarative/qmlgraphicsrepeater/data/intmodel.qml | 2 | ||||
-rw-r--r-- | tests/auto/declarative/qmlgraphicsrepeater/data/itemlist.qml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/declarative/qmlgraphicsrepeater/data/intmodel.qml b/tests/auto/declarative/qmlgraphicsrepeater/data/intmodel.qml index 2d6eae8..cf1fb4d 100644 --- a/tests/auto/declarative/qmlgraphicsrepeater/data/intmodel.qml +++ b/tests/auto/declarative/qmlgraphicsrepeater/data/intmodel.qml @@ -10,7 +10,7 @@ Rectangle { function checkProperties() { testObject.error = false; if (repeater.delegate != comp) { - print("delegate property incorrect"); + console.log("delegate property incorrect"); testObject.error = true; } } diff --git a/tests/auto/declarative/qmlgraphicsrepeater/data/itemlist.qml b/tests/auto/declarative/qmlgraphicsrepeater/data/itemlist.qml index 8d28bf8..fc6b34c 100644 --- a/tests/auto/declarative/qmlgraphicsrepeater/data/itemlist.qml +++ b/tests/auto/declarative/qmlgraphicsrepeater/data/itemlist.qml @@ -11,7 +11,7 @@ Rectangle { function checkProperties() { testObject.error = false; if (testObject.useModel && view.model != itemModel) { - print("model property incorrect"); + console.log("model property incorrect"); testObject.error = true; } } |