summaryrefslogtreecommitdiffstats
path: root/examples/declarative/connections/content/Button.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/connections/content/Button.qml')
-rw-r--r--examples/declarative/connections/content/Button.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/connections/content/Button.qml b/examples/declarative/connections/content/Button.qml
index 1d46acc..0e33c78 100644
--- a/examples/declarative/connections/content/Button.qml
+++ b/examples/declarative/connections/content/Button.qml
@@ -8,5 +8,5 @@ Item {
signal clicked
Image { id: icon }
- MouseRegion { anchors.fill: icon; onClicked: button.clicked() }
+ MouseArea { anchors.fill: icon; onClicked: button.clicked() }
}