summaryrefslogtreecommitdiffstats
path: root/tools/qdoc3/text.cpp
diff options
context:
space:
mode:
authorMartin Smith <martin.smith@nokia.com>2010-09-24 13:30:29 (GMT)
committerMartin Smith <martin.smith@nokia.com>2010-09-24 13:30:29 (GMT)
commit4ea898fe70fd7a77a95c87668807f8af8342780b (patch)
tree65862bfbf9df92591ee796796db804f3dc2d93c8 /tools/qdoc3/text.cpp
parent6cff9860c5390cceee4973fce20798939fae088b (diff)
downloadQt-4ea898fe70fd7a77a95c87668807f8af8342780b.zip
Qt-4ea898fe70fd7a77a95c87668807f8af8342780b.tar.gz
Qt-4ea898fe70fd7a77a95c87668807f8af8342780b.tar.bz2
qdoc: Corrected many GUIDs.
Still more to do here.
Diffstat (limited to 'tools/qdoc3/text.cpp')
-rw-r--r--tools/qdoc3/text.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/qdoc3/text.cpp b/tools/qdoc3/text.cpp
index 7093a43..11d7edd 100644
--- a/tools/qdoc3/text.cpp
+++ b/tools/qdoc3/text.cpp
@@ -144,7 +144,9 @@ QString Text::toString() const
QString str;
const Atom *atom = firstAtom();
while ( atom != 0 ) {
- if ( atom->type() == Atom::String || atom->type() == Atom::AutoLink )
+ if ( atom->type() == Atom::String ||
+ atom->type() == Atom::AutoLink ||
+ atom->type() == Atom::GuidLink)
str += atom->string();
atom = atom->next();
}