diff options
-rw-r--r-- | tools/qdoc3/htmlgenerator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/qdoc3/htmlgenerator.cpp b/tools/qdoc3/htmlgenerator.cpp index 3b40d6e..577e896 100644 --- a/tools/qdoc3/htmlgenerator.cpp +++ b/tools/qdoc3/htmlgenerator.cpp @@ -1688,7 +1688,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 @@ -1706,7 +1706,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 |