summaryrefslogtreecommitdiffstats
path: root/examples/declarative/dial
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2009-08-18 00:43:02 (GMT)
committerMartin Jones <martin.jones@nokia.com>2009-08-18 00:43:02 (GMT)
commit8f5e72298fc4b8a5838bee1291a2cc422750b6b8 (patch)
treef7a780127d327c879cb642b8a23c44f081c71556 /examples/declarative/dial
parent41335c52ef2844589030cddb4773c68cf38331af (diff)
downloadQt-8f5e72298fc4b8a5838bee1291a2cc422750b6b8.zip
Qt-8f5e72298fc4b8a5838bee1291a2cc422750b6b8.tar.gz
Qt-8f5e72298fc4b8a5838bee1291a2cc422750b6b8.tar.bz2
MouseRegion API changes following review.
Diffstat (limited to 'examples/declarative/dial')
-rw-r--r--examples/declarative/dial/dial.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/dial/dial.qml b/examples/declarative/dial/dial.qml
index 3773bcc..75bd9b1 100644
--- a/examples/declarative/dial/dial.qml
+++ b/examples/declarative/dial/dial.qml
@@ -26,7 +26,7 @@ Rect {
}
MouseRegion {
anchors.fill: parent
- drag.target: parent; drag.axis: "x"; drag.xmin: 2; drag.xmax: 128
+ drag.target: parent; drag.axis: "x"; drag.minimumX: 2; drag.maximumX: 128
}
}
}