diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2009-05-06 05:59:05 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2009-05-06 05:59:05 (GMT) |
commit | b640dffcfb6fd2c493750ae29032a8beb47152b8 (patch) | |
tree | 9375e4395ffb40b6ed91d5a5f49b505e24c0a9b9 /doc | |
parent | 7e05e3c7e542b44ee98c2bc2550b8ff81ecbaf00 (diff) | |
download | Qt-b640dffcfb6fd2c493750ae29032a8beb47152b8.zip Qt-b640dffcfb6fd2c493750ae29032a8beb47152b8.tar.gz Qt-b640dffcfb6fd2c493750ae29032a8beb47152b8.tar.bz2 |
doc
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/qmlviewer.qdoc | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/doc/src/qmlviewer.qdoc b/doc/src/qmlviewer.qdoc index e8fdec4..e9f8029 100644 --- a/doc/src/qmlviewer.qdoc +++ b/doc/src/qmlviewer.qdoc @@ -68,11 +68,12 @@ that is a qreal from 0 to 86400 representing the number of seconds since midnight, dummy data for this could be provided by \c dummydata/clock.qml: \code - <Object> - <properties> - <Property name="time" value="12345"/> - </properties> - </Object> + Object { + properties: Property { + name: "time" + value: 12345 + } + } \endcode Any QML can be used in the dummy data files. You could even animate the fictional data! |