aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/components/stateseditor/stateslist.qml
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@nokia.com>2010-03-05 10:19:38 +0100
committerKai Koehne <kai.koehne@nokia.com>2010-03-05 10:47:53 +0100
commitf20c2095c4bc4900aca638fda30ddd7be054c7b8 (patch)
treef059db6d6baf3bbd59856293f093adb634189943 /src/plugins/qmldesigner/components/stateseditor/stateslist.qml
parent5c568a68d3e61de755cba5ab64b2bf64f107a797 (diff)
Qml: MouseRegion got renamed to MouseArea
Reviewed-by: Christian Kamm
Diffstat (limited to 'src/plugins/qmldesigner/components/stateseditor/stateslist.qml')
-rw-r--r--src/plugins/qmldesigner/components/stateseditor/stateslist.qml12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/qmldesigner/components/stateseditor/stateslist.qml b/src/plugins/qmldesigner/components/stateseditor/stateslist.qml
index b97bb85522..ca6585b2aa 100644
--- a/src/plugins/qmldesigner/components/stateseditor/stateslist.qml
+++ b/src/plugins/qmldesigner/components/stateseditor/stateslist.qml
@@ -28,7 +28,7 @@ Rectangle {
// TextInputs don't loose focus automatically when user clicks away, have to be done explicitly
signal unFocus
- MouseRegion {
+ MouseArea {
anchors.fill:parent
hoverEnabled:true
onExited: root.unFocus();
@@ -201,7 +201,7 @@ Rectangle {
}
}
- MouseRegion {
+ MouseArea {
id: itemRegion
anchors.fill: container
onClicked: {
@@ -286,7 +286,7 @@ Rectangle {
}
}
- MouseRegion {
+ MouseArea {
anchors.fill:parent
onClicked: {
root.unFocus();
@@ -325,7 +325,7 @@ Rectangle {
elide:Qt.ElideMiddle
horizontalAlignment:Qt.AlignHCenter
}
- MouseRegion {
+ MouseArea {
id: txtRegion
anchors.fill:parent
onClicked: {
@@ -489,7 +489,7 @@ Rectangle {
anchors.centerIn:parent
}
}
- MouseRegion {
+ MouseArea {
anchors.fill:parent
onClicked: {
// force close textinput
@@ -557,7 +557,7 @@ Rectangle {
}
}
- MouseRegion {
+ MouseArea {
anchors.fill:parent
property int dragging:0;
property int originalX:0;