summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/xmlpatterns/filetree/doc/src/filetree.qdoc16
-rw-r--r--src/xmlpatterns/doc/src/xml-patterns.qdoc2
2 files changed, 8 insertions, 10 deletions
diff --git a/examples/xmlpatterns/filetree/doc/src/filetree.qdoc b/examples/xmlpatterns/filetree/doc/src/filetree.qdoc
index cf485ae..796861d 100644
--- a/examples/xmlpatterns/filetree/doc/src/filetree.qdoc
+++ b/examples/xmlpatterns/filetree/doc/src/filetree.qdoc
@@ -118,15 +118,13 @@
file system. At this point it is instructive to note that although
the node model class for this example (\c{FileTree}) actually builds
and contains the custom node model, building the custom node model
- isn't always required. The node model class for the \l{QObject XML
- Model Example} {QObject node model example} does not build its node
- model but instead uses an already existing QObject tree as its node
- model and just implements the callback interface for that already
- existing data structure. In this file system example, however,
- although we have an already existing data structure, i.e. the file
- system, that data structure is not in memory and is not in a form we
- can use. So we must build an analog of the file system in memory
- from instances of QFileInfo, and we use that analog as the custom
+ isn't always required. For example, it is possible to use an already
+ existing QObject tree as a node model and just implement the callback
+ interface for that already existing data structure. In this file system
+ example, however, although we have an already existing data structure,
+ i.e. the file system, that data structure is not in memory and is not
+ in a form we can use. So we must build an analog of the file system in
+ memory from instances of QFileInfo, and we use that analog as the custom
node model.
The two sets of flags, \c{m_filterAllowAll} and \c{m_sortFlags},
diff --git a/src/xmlpatterns/doc/src/xml-patterns.qdoc b/src/xmlpatterns/doc/src/xml-patterns.qdoc
index ae1ed3b..407e2d1 100644
--- a/src/xmlpatterns/doc/src/xml-patterns.qdoc
+++ b/src/xmlpatterns/doc/src/xml-patterns.qdoc
@@ -538,7 +538,7 @@
\li The set of D-Bus interfaces available in a system
- \li A QObject hierarchy, as seen in the \l{QObject XML Model Example}.
+ \li A QObject hierarchy.
\endlist