summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/t2/Cell.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/tutorials/t2/Cell.qml')
-rw-r--r--examples/declarative/tutorials/t2/Cell.qml16
1 files changed, 0 insertions, 16 deletions
diff --git a/examples/declarative/tutorials/t2/Cell.qml b/examples/declarative/tutorials/t2/Cell.qml
deleted file mode 100644
index bd5bbe7..0000000
--- a/examples/declarative/tutorials/t2/Cell.qml
+++ /dev/null
@@ -1,16 +0,0 @@
-Item {
- id: CellContainer
- width: 40
- height: 25
- properties: Property {
- name: "color"
- }
- Rect {
- anchors.fill: parent
- color: CellContainer.color
- }
- MouseRegion {
- anchors.fill: parent
- onClicked: { HelloText.color = CellContainer.color }
- }
-}