aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorShawn Rutledge <shawn.rutledge@qt.io>2018-02-26 08:02:39 +0100
committerShawn Rutledge <shawn.rutledge@qt.io>2018-02-27 14:00:24 +0000
commit6fa746fa61e35dc26e5286250ddc9488546f5b66 (patch)
tree0669fe601b524fbab3e067ca83729fc73c08af28 /examples
parentf010b360c3b9929550ee1768c0eddd2a85345da6 (diff)
rename containsMask to containmentMask
It was pointed out that containsMask sounds like it ought to be a boolean property. Change-Id: I2b56823b60d64f9903b0d5108c6428e691c09ed0 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io> Reviewed-by: Paolo Angelelli <paolo.angelelli@qt.io>
Diffstat (limited to 'examples')
-rw-r--r--examples/quick/shapes/content/tapableTriangle.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/quick/shapes/content/tapableTriangle.qml b/examples/quick/shapes/content/tapableTriangle.qml
index 274552f525..be48e23876 100644
--- a/examples/quick/shapes/content/tapableTriangle.qml
+++ b/examples/quick/shapes/content/tapableTriangle.qml
@@ -56,7 +56,7 @@ Rectangle {
width: 120
height: 120
color: th.pressed ? "steelBlue" : "lightGray"
- containsMask: ctr
+ containmentMask: ctr
TapHandler { id: th }