diff options
author | David Boddie <david.boddie@nokia.com> | 2010-09-06 11:22:39 (GMT) |
---|---|---|
committer | David Boddie <david.boddie@nokia.com> | 2010-09-06 11:22:39 (GMT) |
commit | 5cfc65d04858563e53987b224f36ee71356aa73c (patch) | |
tree | c930c2ed2163e84c71200bb0e616e74e45ac46ec /doc/src/declarative/qml-intro.qdoc | |
parent | cb80c41e7bced1877312468e7f65e3a561e7d161 (diff) | |
download | Qt-5cfc65d04858563e53987b224f36ee71356aa73c.zip Qt-5cfc65d04858563e53987b224f36ee71356aa73c.tar.gz Qt-5cfc65d04858563e53987b224f36ee71356aa73c.tar.bz2 |
Doc: Worked on two more elements, replacing an image.
Diffstat (limited to 'doc/src/declarative/qml-intro.qdoc')
-rw-r--r-- | doc/src/declarative/qml-intro.qdoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/declarative/qml-intro.qdoc b/doc/src/declarative/qml-intro.qdoc index 9130be0..d735042 100644 --- a/doc/src/declarative/qml-intro.qdoc +++ b/doc/src/declarative/qml-intro.qdoc @@ -58,12 +58,12 @@ would be a property. The basic syntax of an \l{QML Elements}{element} is -\code +\qml SomeElement { id: myObject ... some other things here ... } -\endcode +\endqml Here we are defining a new object. We specify its 'type' first as SomeElement. Then within matching braces { ... } we specify the various parts of our |