diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2010-05-26 01:24:37 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2010-05-26 01:25:18 (GMT) |
commit | 113d7a6a1eab75ad5673f9b50ccf8df456b5d628 (patch) | |
tree | 6bf3617e834075e5194fb69e243e46d5b9f1af05 /doc | |
parent | 3d34201d34ba26530025d5ff88fa6e498ae6f800 (diff) | |
download | Qt-113d7a6a1eab75ad5673f9b50ccf8df456b5d628.zip Qt-113d7a6a1eab75ad5673f9b50ccf8df456b5d628.tar.gz Qt-113d7a6a1eab75ad5673f9b50ccf8df456b5d628.tar.bz2 |
Fix Gradient doc snippet.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/snippets/declarative/gradient.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/src/snippets/declarative/gradient.qml b/doc/src/snippets/declarative/gradient.qml index d25352b..7a68233 100644 --- a/doc/src/snippets/declarative/gradient.qml +++ b/doc/src/snippets/declarative/gradient.qml @@ -41,6 +41,7 @@ import Qt 4.7 +//![code] Rectangle { width: 100; height: 100 gradient: Gradient { @@ -49,3 +50,4 @@ Rectangle { GradientStop { position: 1.0; color: "green" } } } +//![code] |