summaryrefslogtreecommitdiffstats
path: root/src/corelib/serialization/qxmlstream.cpp
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@qt.io>2020-04-23 12:43:16 +0200
committerKai Koehne <kai.koehne@qt.io>2020-04-24 09:47:26 +0200
commit40001d4a53ed6f0f43bce3f0e731ac020d03a2a7 (patch)
tree46f004415ccb565ce49df4edab6edd331ff74191 /src/corelib/serialization/qxmlstream.cpp
parent9260662cb1d8f4eb27afa159025c1feebe1ef286 (diff)
Doc: Remove mentioning of QXmlSimpleReader from QXmlStreamReader
Pick-to: 5.15 Change-Id: Ieba073c21f666421ab519089e0976880e67ad0b1 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
Diffstat (limited to 'src/corelib/serialization/qxmlstream.cpp')
-rw-r--r--src/corelib/serialization/qxmlstream.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/corelib/serialization/qxmlstream.cpp b/src/corelib/serialization/qxmlstream.cpp
index d7fb0d0d41..3e42a58bbe 100644
--- a/src/corelib/serialization/qxmlstream.cpp
+++ b/src/corelib/serialization/qxmlstream.cpp
@@ -263,12 +263,10 @@ QXmlStreamEntityResolver *QXmlStreamReader::entityResolver() const
\ingroup xml-tools
- QXmlStreamReader is a faster and more convenient replacement for
- Qt's own SAX parser (see QXmlSimpleReader). In some cases it might
- also be a faster and more convenient alternative for use in
- applications that would otherwise use a DOM tree (see QDomDocument).
- QXmlStreamReader reads data either from a QIODevice (see
- setDevice()), or from a raw QByteArray (see addData()).
+ QXmlStreamReader provides a simple streaming API to parse well-formed
+ XML. It is an alternative to first loading the complete XML into a
+ DOM tree (see \l QDomDocument). QXmlStreamReader reads data either
+ from a QIODevice (see setDevice()), or from a raw QByteArray (see addData()).
Qt provides QXmlStreamWriter for writing XML.