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 /demos/declarative/webbrowser/content | |
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 'demos/declarative/webbrowser/content')
-rw-r--r-- | demos/declarative/webbrowser/content/RectSoftShadow.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/demos/declarative/webbrowser/content/RectSoftShadow.qml b/demos/declarative/webbrowser/content/RectSoftShadow.qml index 0235842..2b39422 100644 --- a/demos/declarative/webbrowser/content/RectSoftShadow.qml +++ b/demos/declarative/webbrowser/content/RectSoftShadow.qml @@ -1,10 +1,10 @@ <Item> - <Image src="pics/softshadow-left.sci" x="-16" y="-16" + <Image source="pics/softshadow-left.sci" x="-16" y="-16" width="16" height="{parent.height+32}" /> - <Image src="pics/softshadow-right.sci" x="{parent.width}" y="-16" + <Image source="pics/softshadow-right.sci" x="{parent.width}" y="-16" width="16" height="{parent.height+32}" /> - <Image src="pics/softshadow-top.png" x="0" y="-16" + <Image source="pics/softshadow-top.png" x="0" y="-16" width="{parent.width}" height="16" /> - <Image src="pics/softshadow-bottom.png" x="0" y="{parent.height}" + <Image source="pics/softshadow-bottom.png" x="0" y="{parent.height}" width="{webview.width*webview.scale}" height="16" /> </Item> |