QDoc: Disambiguate prev and next links in html source.
Change-Id: Iaa82b9b6de71b577a44eae86eb6847c07d068670 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@nokia.com>
This commit is contained in:
parent
c10a0c29d3
commit
99e3c08064
@ -1876,7 +1876,7 @@ void HtmlGenerator::generateHeader(const QString& title,
|
||||
out() << " <link rel=\"prev\" href=\""
|
||||
<< anchorPair.first << "\" />\n";
|
||||
|
||||
navigationLinks += "<a href=\"" + anchorPair.first + "\">";
|
||||
navigationLinks += "<a class=\"prevPage\" href=\"" + anchorPair.first + "\">";
|
||||
if (linkPair.first == linkPair.second && !anchorPair.second.isEmpty())
|
||||
navigationLinks += protect(anchorPair.second);
|
||||
else
|
||||
@ -1894,7 +1894,7 @@ void HtmlGenerator::generateHeader(const QString& title,
|
||||
out() << " <link rel=\"next\" href=\""
|
||||
<< anchorPair.first << "\" />\n";
|
||||
|
||||
navigationLinks += "<a href=\"" + anchorPair.first + "\">";
|
||||
navigationLinks += "<a class=\"nextPage\" href=\"" + anchorPair.first + "\">";
|
||||
if (linkPair.first == linkPair.second && !anchorPair.second.isEmpty())
|
||||
navigationLinks += protect(anchorPair.second);
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user