diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-05-01 08:24:14 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-05-01 08:24:14 (GMT) |
commit | afd8fd8cbf0ae3f7d7febc4f4a00628c7bd5c541 (patch) | |
tree | 42e1450324edac2c29eccdb4f3b391c8954b08e9 /examples/declarative/velocity | |
parent | f5e2c51efd24445e46c3dcad30e9137b1beecc1d (diff) | |
download | Qt-afd8fd8cbf0ae3f7d7febc4f4a00628c7bd5c541.zip Qt-afd8fd8cbf0ae3f7d7febc4f4a00628c7bd5c541.tar.gz Qt-afd8fd8cbf0ae3f7d7febc4f4a00628c7bd5c541.tar.bz2 |
Use QML properties syntax
Diffstat (limited to 'examples/declarative/velocity')
-rw-r--r-- | examples/declarative/velocity/Day.qml | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/examples/declarative/velocity/Day.qml b/examples/declarative/velocity/Day.qml index 7d26e88..c70a211 100644 --- a/examples/declarative/velocity/Day.qml +++ b/examples/declarative/velocity/Day.qml @@ -1,16 +1,12 @@ Rect { + property string day + property var stickies + width: 400 height: 500 radius: 7 pen.color: "black" id: Page - properties: Property { - name: "day" - type: "string" - } - properties: Property { - name: "stickies" - } Image { x: 10 y: 10 |