Qml: MouseRegion got renamed to MouseArea

Reviewed-by: Christian Kamm
This commit is contained in:
Kai Koehne
2010-03-05 10:19:38 +01:00
parent 5c568a68d3
commit f20c2095c4
15 changed files with 58 additions and 58 deletions

View File

@@ -22,7 +22,7 @@ Item {
text: modelData.name + "(" + modelData.engineId + ")"
anchors.horizontalCenter: parent.horizontalCenter
}
MouseRegion {
MouseArea {
anchors.fill: parent
onClicked: root.engineClicked(modelData.engineId);
}
@@ -38,7 +38,7 @@ Item {
height: 63;
smooth: true
anchors.right: parent.right
MouseRegion {
MouseArea {
anchors.fill: parent
onClicked: Root.refreshEngines()
}