diff options
author | Martin Smith <martin.smith@nokia.com> | 2010-08-09 10:18:53 (GMT) |
---|---|---|
committer | Martin Smith <martin.smith@nokia.com> | 2010-08-09 10:18:53 (GMT) |
commit | f45c6c61a0967468b1b80375d8c72db4f4fec438 (patch) | |
tree | 4636f10f6b2d3708419e16bdfaf29f4a27b10f11 /doc/src/examples/simpletreemodel.qdoc | |
parent | 16b7dcb9f3ac6c11e1697fe4cb82e22442515a62 (diff) | |
download | Qt-f45c6c61a0967468b1b80375d8c72db4f4fec438.zip Qt-f45c6c61a0967468b1b80375d8c72db4f4fec438.tar.gz Qt-f45c6c61a0967468b1b80375d8c72db4f4fec438.tar.bz2 |
doc: Fixed some qdoc errors.
Diffstat (limited to 'doc/src/examples/simpletreemodel.qdoc')
-rw-r--r-- | doc/src/examples/simpletreemodel.qdoc | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/doc/src/examples/simpletreemodel.qdoc b/doc/src/examples/simpletreemodel.qdoc index c34f4af..16cf8b7 100644 --- a/doc/src/examples/simpletreemodel.qdoc +++ b/doc/src/examples/simpletreemodel.qdoc @@ -36,13 +36,15 @@ \image simpletreemodel-example.png - Qt's model/view architecture provides a standard way for views to manipulate - information in a data source, using an abstract model of the data to - simplify and standardize the way it is accessed. Simple models represent - data as a table of items, and allow views to access this data via an - \l{model-view-model.html}{index-based} system. More generally, models can - be used to represent data in the form of a tree structure by allowing each - item to act as a parent to a table of child items. + Qt's model/view architecture provides a standard way for views to + manipulate information in a data source, using an abstract model + of the data to simplify and standardize the way it is accessed. + Simple models represent data as a table of items, and allow views + to access this data via an + \l{model-view-programming.html#model-indexes} {index-based} + system. More generally, models can be used to represent data in + the form of a tree structure by allowing each item to act as a + parent to a table of child items. Before attempting to implement a tree model, it is worth considering whether the data is supplied by an external source, or whether it is going to be |