summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorWarwick Allison <warwick.allison@nokia.com>2009-09-14 01:36:47 (GMT)
committerWarwick Allison <warwick.allison@nokia.com>2009-09-14 01:36:47 (GMT)
commitb42b3db9bc459ef26bfaefa924dab2e853373b0d (patch)
tree7ac75be42c76e8f8e66a555eaa835e0e208cf441 /tools
parent788da2e8b85f3773a525a6f2bcc535fa38ed02b2 (diff)
downloadQt-b42b3db9bc459ef26bfaefa924dab2e853373b0d.zip
Qt-b42b3db9bc459ef26bfaefa924dab2e853373b0d.tar.gz
Qt-b42b3db9bc459ef26bfaefa924dab2e853373b0d.tar.bz2
Track QML API changes.
Diffstat (limited to 'tools')
-rw-r--r--tools/qmldebugger/engines.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/qmldebugger/engines.qml b/tools/qmldebugger/engines.qml
index 1652ebd..1e9335b 100644
--- a/tools/qmldebugger/engines.qml
+++ b/tools/qmldebugger/engines.qml
@@ -9,16 +9,16 @@ Item {
Row {
anchors.fill: parent
Repeater {
- dataSource: engines
+ model: engines
Item {
width: 100; height: 100;
Image {
- id: Image;
+ id: EngineIcon;
source: "qrc:/engine.png"
anchors.horizontalCenter: parent.horizontalCenter
}
Text {
- anchors.top: Image.bottom;
+ anchors.top: EngineIcon.bottom;
text: modelData.name + "(" + modelData.engineId + ")"
anchors.horizontalCenter: parent.horizontalCenter
}