diff options
author | David Boddie <dboddie@trolltech.com> | 2009-10-09 13:44:55 (GMT) |
---|---|---|
committer | David Boddie <dboddie@trolltech.com> | 2009-10-09 16:57:41 (GMT) |
commit | db77c5b9c74dc022fc2b37fae73ddbbe89e89c07 (patch) | |
tree | f6002a5038ab5554ca6a76329ed3db40fcb5aad6 /doc/src/porting | |
parent | 0f848030a2477a737a626a5b608cad1653a8ba1a (diff) | |
download | Qt-db77c5b9c74dc022fc2b37fae73ddbbe89e89c07.zip Qt-db77c5b9c74dc022fc2b37fae73ddbbe89e89c07.tar.gz Qt-db77c5b9c74dc022fc2b37fae73ddbbe89e89c07.tar.bz2 |
Doc: Replace QDirModel with QFileSystemModel in examples and overviews.
Task-number: QTBUG-4152
Reviewed-by: Trust Me
Diffstat (limited to 'doc/src/porting')
-rw-r--r-- | doc/src/porting/qt4-interview.qdoc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/porting/qt4-interview.qdoc b/doc/src/porting/qt4-interview.qdoc index 29d9f5c..fd3fb36 100644 --- a/doc/src/porting/qt4-interview.qdoc +++ b/doc/src/porting/qt4-interview.qdoc @@ -109,8 +109,8 @@ \list \o QStandardItemModel is a minimal convenience model that developers can use to manage items of data. - \o QDirModel provides directory information for use with QListView and - QTreeView. + \o QFileSystemModel provides directory information for use with QListView + and QTreeView. \o QStringListModel is a convenience model that can be used to hold strings for views such as QListView and QComboBox. \endlist @@ -153,7 +153,7 @@ In this example, we display the contents of a model using two different views, and share the user's selection between - them. We will use the QDirModel supplied with Qt because it + them. We will use the QFileSystemModel supplied with Qt because it requires very little configuration, and provides existing data to the views. @@ -174,7 +174,7 @@ \image interview-shareddirmodel.png - The model/view architecture allows us to replace the QDirModel in + The model/view architecture allows us to replace the QFileSystemModel in this example with a completely different model, one that will perhaps obtain data from a remote server, or from a database. |