diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2009-04-29 05:22:28 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2009-04-29 05:22:28 (GMT) |
commit | 94a698046c2c00a4627607db1f7099880643e829 (patch) | |
tree | 14bea2bd854bea2488982f2c5e48ca00cfe4b321 /examples/declarative/slideswitch | |
parent | 9ba03ca32ae12f8b135f3b4f80c445edc3e6b55e (diff) | |
download | Qt-94a698046c2c00a4627607db1f7099880643e829.zip Qt-94a698046c2c00a4627607db1f7099880643e829.tar.gz Qt-94a698046c2c00a4627607db1f7099880643e829.tar.bz2 |
Rename the 'src' attribute 'source'. Don't need to be HTML-like anymore.
Diffstat (limited to 'examples/declarative/slideswitch')
-rw-r--r-- | examples/declarative/slideswitch/Switch.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/slideswitch/Switch.qml b/examples/declarative/slideswitch/Switch.qml index f62e4b6..a3f75e8 100644 --- a/examples/declarative/slideswitch/Switch.qml +++ b/examples/declarative/slideswitch/Switch.qml @@ -31,7 +31,7 @@ Item { } Image { id: Groove - src: "background.svg" + source: "background.svg" } MouseRegion { anchors.fill: Groove @@ -39,7 +39,7 @@ Item { } Image { id: Knob - src: "knob.svg" + source: "knob.svg" x: 1 y: 2 } |