summaryrefslogtreecommitdiffstats
path: root/tools/qmldebugger
diff options
context:
space:
mode:
Diffstat (limited to 'tools/qmldebugger')
-rw-r--r--tools/qmldebugger/standalone/engines.qml10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/qmldebugger/standalone/engines.qml b/tools/qmldebugger/standalone/engines.qml
index 1e9335b..0b2b7ac 100644
--- a/tools/qmldebugger/standalone/engines.qml
+++ b/tools/qmldebugger/standalone/engines.qml
@@ -2,7 +2,7 @@ import Qt 4.6
Item {
height: 100
- id: Root
+ id: root
signal engineClicked(int id)
signal refreshEngines()
@@ -13,18 +13,18 @@ Item {
Item {
width: 100; height: 100;
Image {
- id: EngineIcon;
+ id: engineIcon;
source: "qrc:/engine.png"
anchors.horizontalCenter: parent.horizontalCenter
}
Text {
- anchors.top: EngineIcon.bottom;
+ anchors.top: engineIcon.bottom;
text: modelData.name + "(" + modelData.engineId + ")"
anchors.horizontalCenter: parent.horizontalCenter
}
MouseRegion {
anchors.fill: parent
- onClicked: Root.engineClicked(modelData.engineId);
+ onClicked: root.engineClicked(modelData.engineId);
}
}
}
@@ -40,7 +40,7 @@ Item {
anchors.right: parent.right
MouseRegion {
anchors.fill: parent
- onClicked: Root.refreshEngines()
+ onClicked: root.refreshEngines()
}
}
}