diff options
author | Martin Smith <martin.smith@nokia.com> | 2010-12-08 11:13:53 (GMT) |
---|---|---|
committer | Martin Smith <martin.smith@nokia.com> | 2010-12-08 11:13:53 (GMT) |
commit | 32292a7bdd3764aad917f7df1ea4a791f0b1528f (patch) | |
tree | 692422db12f5a317c937dfe725ba43994a55ca8e /tools/qdoc3/ditaxmlgenerator.h | |
parent | b5915ef3a6d0417440ad82e9369d6679505b953e (diff) | |
download | Qt-32292a7bdd3764aad917f7df1ea4a791f0b1528f.zip Qt-32292a7bdd3764aad917f7df1ea4a791f0b1528f.tar.gz Qt-32292a7bdd3764aad917f7df1ea4a791f0b1528f.tar.bz2 |
qdoc: Fixed the double escaping problem.
It's sort of ugly, because it just removes
the escapeing that the code marker puts in
so the XML stream writer can put the escaping
back in again. It doesn't seem to slow it
down at all, which is wierd.
Diffstat (limited to 'tools/qdoc3/ditaxmlgenerator.h')
-rw-r--r-- | tools/qdoc3/ditaxmlgenerator.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/qdoc3/ditaxmlgenerator.h b/tools/qdoc3/ditaxmlgenerator.h index b13fa49..c077b53 100644 --- a/tools/qdoc3/ditaxmlgenerator.h +++ b/tools/qdoc3/ditaxmlgenerator.h @@ -112,6 +112,7 @@ class DitaXmlGenerator : public PageGenerator void writeXrefListItem(const QString& link, const QString& text); QString fullQualification(const Node* n); + void writeCharacters(const QString& text); void writeDerivations(const ClassNode* cn, CodeMarker* marker); void writeLocation(const Node* n); void writeFunctions(const Section& s, |