diff options
author | Thomas Zander <t.zander@nokia.com> | 2009-11-18 12:34:08 (GMT) |
---|---|---|
committer | Thomas Zander <t.zander@nokia.com> | 2009-11-18 13:30:27 (GMT) |
commit | f8aa69deaeb1c22c4c7e3d05250193826de1f10e (patch) | |
tree | 00ac8f09b158e29cab2c003e538519bd1c7693d1 | |
parent | 6f55976270b22142da78b80abbebf018539587de (diff) | |
download | Qt-f8aa69deaeb1c22c4c7e3d05250193826de1f10e.zip Qt-f8aa69deaeb1c22c4c7e3d05250193826de1f10e.tar.gz Qt-f8aa69deaeb1c22c4c7e3d05250193826de1f10e.tar.bz2 |
Fix html output of docs
The sub-title was too big which was caused by an unclosed anchor tag.
Reviewed-by: David Boddie
-rw-r--r-- | tools/qdoc3/htmlgenerator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qdoc3/htmlgenerator.cpp b/tools/qdoc3/htmlgenerator.cpp index f0ddade..462a66f 100644 --- a/tools/qdoc3/htmlgenerator.cpp +++ b/tools/qdoc3/htmlgenerator.cpp @@ -4080,7 +4080,7 @@ void HtmlGenerator::generateMacRef(const Node *node, CodeMarker *marker) QStringList macRefs = marker->macRefsForNode(node); foreach (const QString &macRef, macRefs) - out() << "<a name=\"" << "//apple_ref/" << macRef << "\" />\n"; + out() << "<a name=\"" << "//apple_ref/" << macRef << "\"></a>\n"; } void HtmlGenerator::beginLink(const QString &link, |