summaryrefslogtreecommitdiffstats
path: root/examples/declarative/behaviours/MyRect.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/behaviours/MyRect.qml')
-rw-r--r--examples/declarative/behaviours/MyRect.qml13
1 files changed, 0 insertions, 13 deletions
diff --git a/examples/declarative/behaviours/MyRect.qml b/examples/declarative/behaviours/MyRect.qml
deleted file mode 100644
index caf0d83..0000000
--- a/examples/declarative/behaviours/MyRect.qml
+++ /dev/null
@@ -1,13 +0,0 @@
-import Qt 4.6
-
-Rectangle {
- radius: 15
- border.color: "black"
- width: 100
- height: 100
- id: page
- MouseArea {
- anchors.fill: parent
- onClicked: { bluerect.parent = page; bluerect.x=0 }
- }
-}