diff options
author | Morten Engvoldsen <morten.engvoldsen@nokia.com> | 2010-10-06 08:35:47 (GMT) |
---|---|---|
committer | Morten Engvoldsen <morten.engvoldsen@nokia.com> | 2010-10-06 08:35:47 (GMT) |
commit | 371b528ffd53cc28ca621739d6c3fc33a1fb9fa0 (patch) | |
tree | 12051bbadcf767dfdf58d97bf4fc88da56013342 /doc | |
parent | e3bcf44684aa30271c986911b328c9d9c372912a (diff) | |
download | Qt-371b528ffd53cc28ca621739d6c3fc33a1fb9fa0.zip Qt-371b528ffd53cc28ca621739d6c3fc33a1fb9fa0.tar.gz Qt-371b528ffd53cc28ca621739d6c3fc33a1fb9fa0.tar.bz2 |
Doc: Fixing bug in QML tutorial
The code snippet for the simple button was not correctly linked.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/getting-started/gettingstartedqml.qdoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/getting-started/gettingstartedqml.qdoc b/doc/src/getting-started/gettingstartedqml.qdoc index 9d4f6a7..69658f6 100644 --- a/doc/src/getting-started/gettingstartedqml.qdoc +++ b/doc/src/getting-started/gettingstartedqml.qdoc @@ -71,7 +71,7 @@ In QML, the basic visual item is the \l {Rectangle}{Rectangle} element. The \c Rectangle element has properties to control the element's appearance and location. - \snippet examples/tutorials/gettingStarted/gsQml/part0/Button.qml document + \snippet examples/tutorials/gettingStarted/gsQml/core/Button.qml document First, the \c { import QtQuick 1.0 } allows the qmlviewer tool to import the QML elements we will later use. This line must exist for every QML file. Notice that the version |