diff options
-rw-r--r-- | tools/qdoc3/htmlgenerator.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/qdoc3/htmlgenerator.cpp b/tools/qdoc3/htmlgenerator.cpp index bfc2da0..3b40d6e 100644 --- a/tools/qdoc3/htmlgenerator.cpp +++ b/tools/qdoc3/htmlgenerator.cpp @@ -1688,12 +1688,12 @@ void HtmlGenerator::generateHeader(const QString& title, out() << " <link rel=\"prev\" href=\"" << anchorPair.first << "\" />\n"; - navigationLinks += "[Previous: <a href=\"" + anchorPair.first + "\">"; + navigationLinks += "<a href=\"" + anchorPair.first + "\">"; if (linkPair.first == linkPair.second && !anchorPair.second.isEmpty()) navigationLinks += protect(anchorPair.second); else navigationLinks += protect(linkPair.second); - navigationLinks += "</a>]\n"; + navigationLinks += "</a>\n"; } if (node->links().contains(Node::NextLink)) { linkPair = node->links()[Node::NextLink]; @@ -1706,12 +1706,12 @@ void HtmlGenerator::generateHeader(const QString& title, out() << " <link rel=\"next\" href=\"" << anchorPair.first << "\" />\n"; - navigationLinks += "[Next: <a href=\"" + anchorPair.first + "\">"; + navigationLinks += "<a href=\"" + anchorPair.first + "\">"; if (linkPair.first == linkPair.second && !anchorPair.second.isEmpty()) navigationLinks += protect(anchorPair.second); else navigationLinks += protect(linkPair.second); - navigationLinks += "</a>]\n"; + navigationLinks += "</a>\n"; } if (node->links().contains(Node::StartLink)) { linkPair = node->links()[Node::StartLink]; |