summaryrefslogtreecommitdiffstats
path: root/src/xml/doc/src
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <bjorn@lindeijer.nl>2013-01-17 18:18:04 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-07-08 14:21:39 +0200
commit636b6c637505b214820602a465d009880b1a3520 (patch)
tree69d0383095fe2e945abf566a4f3219f2c1ec0c1d /src/xml/doc/src
parentb212fc80a7be8877ddbdf99f95a4f7663293f551 (diff)
xml-processing: Small documentation corrections
XbelReader and XbelWriter do not subclass QXmlStreamReader and QXmlStreamWriter anymore, but use aggregation instead. Change-Id: Idbe43e9bdbc47dc73b1984ce17ae4d18e9be5554 Reviewed-by: Thorbjørn Lindeijer <bjorn@lindeijer.nl>
Diffstat (limited to 'src/xml/doc/src')
-rw-r--r--src/xml/doc/src/xml-processing.qdoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xml/doc/src/xml-processing.qdoc b/src/xml/doc/src/xml-processing.qdoc
index c7c3edeeb0..8f534fe7a0 100644
--- a/src/xml/doc/src/xml-processing.qdoc
+++ b/src/xml/doc/src/xml-processing.qdoc
@@ -233,7 +233,7 @@
{hasError()} can be used to check and view the errors.
An example of QXmlStreamReader implementation would be the \c XbelReader in
- \l{QXmlStream Bookmarks Example}, which is a subclass of QXmlStreamReader.
+ \l{QXmlStream Bookmarks Example}, which wraps a QXmlStreamReader.
The constructor takes \a treeWidget as a parameter and the class has Xbel
specific functions:
@@ -278,8 +278,8 @@
or subsequent calls to \l{QXmlStreamWriter::writeStartElement()}
{writeStartElement()}.
- The \c XbelWriter class from \l{QXmlStream Bookmarks Example} is a subclass
- of QXmlStreamWriter. Its \c writeFile() function illustrates the core
+ The \c XbelWriter class from \l{QXmlStream Bookmarks Example} wraps a
+ QXmlStreamWriter. Its \c writeFile() function illustrates the core
functions of QXmlStreamWriter mentioned above:
\snippet streambookmarks/xbelwriter.cpp 1