From 4daa7237b6982c2e12529c1a44632538b2896abc Mon Sep 17 00:00:00 2001 From: Casper van Donderen Date: Thu, 19 Apr 2012 21:34:42 +0200 Subject: QDoc: Remove the text around previous and next page links. Previously we printed "[Previous: ] and [Next: ]. After this change we only print the , which should include an icon. Change-Id: I7bf46623b3bce6b02067127338a1235861449e64 Reviewed-by: Leena Miettinen Reviewed-by: Casper van Donderen --- tools/qdoc3/htmlgenerator.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tools/qdoc3/htmlgenerator.cpp') diff --git a/tools/qdoc3/htmlgenerator.cpp b/tools/qdoc3/htmlgenerator.cpp index bfc2da0fb5..3b40d6ef8f 100644 --- a/tools/qdoc3/htmlgenerator.cpp +++ b/tools/qdoc3/htmlgenerator.cpp @@ -1688,12 +1688,12 @@ void HtmlGenerator::generateHeader(const QString& title, out() << " \n"; - navigationLinks += "[Previous: "; + navigationLinks += ""; if (linkPair.first == linkPair.second && !anchorPair.second.isEmpty()) navigationLinks += protect(anchorPair.second); else navigationLinks += protect(linkPair.second); - navigationLinks += "]\n"; + navigationLinks += "\n"; } if (node->links().contains(Node::NextLink)) { linkPair = node->links()[Node::NextLink]; @@ -1706,12 +1706,12 @@ void HtmlGenerator::generateHeader(const QString& title, out() << " \n"; - navigationLinks += "[Next: "; + navigationLinks += ""; if (linkPair.first == linkPair.second && !anchorPair.second.isEmpty()) navigationLinks += protect(anchorPair.second); else navigationLinks += protect(linkPair.second); - navigationLinks += "]\n"; + navigationLinks += "\n"; } if (node->links().contains(Node::StartLink)) { linkPair = node->links()[Node::StartLink]; -- cgit v1.2.1