diff options
author | David Boddie <dboddie@trolltech.com> | 2010-08-27 16:27:50 (GMT) |
---|---|---|
committer | David Boddie <dboddie@trolltech.com> | 2010-08-27 16:27:50 (GMT) |
commit | 2cac8ca88c9b5b2f9d3040b1543d88ecee52da99 (patch) | |
tree | 33cd6277506e4dab334cdc6f7bf97f5baa12f128 /doc | |
parent | 1a75b369797c41d37f92950f7527c1eb989f1215 (diff) | |
download | Qt-2cac8ca88c9b5b2f9d3040b1543d88ecee52da99.zip Qt-2cac8ca88c9b5b2f9d3040b1543d88ecee52da99.tar.gz Qt-2cac8ca88c9b5b2f9d3040b1543d88ecee52da99.tar.bz2 |
Doc: Fixed links and markup.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/getting-started/gettingstartedqml.qdoc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/src/getting-started/gettingstartedqml.qdoc b/doc/src/getting-started/gettingstartedqml.qdoc index a19d281..771f92e 100644 --- a/doc/src/getting-started/gettingstartedqml.qdoc +++ b/doc/src/getting-started/gettingstartedqml.qdoc @@ -820,11 +820,11 @@ The \c files list property is a list of all the filtered files in a directory. The \c Directory class is implemented to filter out invalid text files; only - files with a \c .txt extension are valid. Further, \l {QLists}{QLists} can be - used in QML files by declaring them as a \c QDeclarativeListProperty in C++. - The templated object needs to inherit from a \l {QObject}{QObject}, therefore, - the \c File class must also inherit from \c QObject. In the \c Directory class, - the list of \c File objects is stored in a \c QList called \c m_fileList. + files with a \c .txt extension are valid. Further, \l{QList}s can be + used in QML files by declaring them as a QDeclarativeListProperty in C++. + The templated object needs to inherit from a QObject, therefore, + the \c File class must also inherit from QObject. In the \c Directory class, + the list of \c File objects is stored in a QList called \c m_fileList. \code class File : public QObject{ |