summaryrefslogtreecommitdiffstats
path: root/doc/src/examples/simpletreemodel.qdoc
diff options
context:
space:
mode:
authorDavid Boddie <dboddie@trolltech.com>2010-08-13 12:10:00 (GMT)
committerDavid Boddie <dboddie@trolltech.com>2010-08-13 12:10:00 (GMT)
commit9878c1765332d9a68a8371b90888fe09e272c7a8 (patch)
treea67a7a28f6737b17498a76bcc40d5ffd65e81572 /doc/src/examples/simpletreemodel.qdoc
parent7d805a6717692b540c02b8caace25a0b47c7f0d6 (diff)
parentb52da4ab2179079a6aff95891786d2f6598048b5 (diff)
downloadQt-9878c1765332d9a68a8371b90888fe09e272c7a8.zip
Qt-9878c1765332d9a68a8371b90888fe09e272c7a8.tar.gz
Qt-9878c1765332d9a68a8371b90888fe09e272c7a8.tar.bz2
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into 4.7
Conflicts: doc/src/examples/simpletreemodel.qdoc doc/src/examples/spinboxdelegate.qdoc doc/src/index.qdoc
Diffstat (limited to 'doc/src/examples/simpletreemodel.qdoc')
-rw-r--r--doc/src/examples/simpletreemodel.qdoc15
1 files changed, 8 insertions, 7 deletions
diff --git a/doc/src/examples/simpletreemodel.qdoc b/doc/src/examples/simpletreemodel.qdoc
index 790d5fa..7d1f8fe 100644
--- a/doc/src/examples/simpletreemodel.qdoc
+++ b/doc/src/examples/simpletreemodel.qdoc
@@ -36,13 +36,14 @@
\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 Programming#Models}{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#Models}{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