diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2010-03-05 01:18:53 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2010-03-05 01:18:53 (GMT) |
commit | 24a94c1b88fc72243c53e1bf51b87dc0d0be41b7 (patch) | |
tree | 01d20c577044a351950814a6fda873d489d78bf2 /examples/declarative/behaviours | |
parent | 38ff49e632da2bd61ac5fb59f57f62208c2687fd (diff) | |
download | Qt-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.qml | 13 |
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 } - } -} |