summaryrefslogtreecommitdiffstats
path: root/examples/declarative/behaviours
diff options
context:
space:
mode:
authorYann Bodson <yann.bodson@nokia.com>2010-03-05 01:18:53 (GMT)
committerYann Bodson <yann.bodson@nokia.com>2010-03-05 01:18:53 (GMT)
commit24a94c1b88fc72243c53e1bf51b87dc0d0be41b7 (patch)
tree01d20c577044a351950814a6fda873d489d78bf2 /examples/declarative/behaviours
parent38ff49e632da2bd61ac5fb59f57f62208c2687fd (diff)
downloadQt-24a94c1b88fc72243c53e1bf51b87dc0d0be41b7.zip
Qt-24a94c1b88fc72243c53e1bf51b87dc0d0be41b7.tar.gz
Qt-24a94c1b88fc72243c53e1bf51b87dc0d0be41b7.tar.bz2
declarative examples cleanup
Diffstat (limited to 'examples/declarative/behaviours')
-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 }
- }
-}