summaryrefslogtreecommitdiffstats
path: root/src/tools/qdoc/ditaxmlgenerator.cpp
diff options
context:
space:
mode:
authorCasper van Donderen <casper.vandonderen@nokia.com>2012-03-27 11:51:42 +0200
committerQt by Nokia <qt-info@nokia.com>2012-03-28 05:07:08 +0200
commit3198247ccf7984174830b3d95457be949eebddfd (patch)
tree1636fb664d0dda751c95a3aef14766ff278d828c /src/tools/qdoc/ditaxmlgenerator.cpp
parent89be197b9225c5b0079425b0c0daf72fbe4f8a9c (diff)
qdoc: also allow \page index as head of ditamap.
QDoc previously only supported having \page index.html as root of the ditamap, this is hard to understand. Change-Id: I9f99bf53440aad372bb72b59e7bfa1a0427cb652 Reviewed-by: Martin Smith <martin.smith@nokia.com>
Diffstat (limited to 'src/tools/qdoc/ditaxmlgenerator.cpp')
-rw-r--r--src/tools/qdoc/ditaxmlgenerator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/qdoc/ditaxmlgenerator.cpp b/src/tools/qdoc/ditaxmlgenerator.cpp
index 2d8a529aa3..a32b1c9633 100644
--- a/src/tools/qdoc/ditaxmlgenerator.cpp
+++ b/src/tools/qdoc/ditaxmlgenerator.cpp
@@ -5737,7 +5737,7 @@ Node* DitaXmlGenerator::collectNodesByTypeAndSubtype(const InnerNode* parent)
if (!child || child->isInternal() || child->doc().isEmpty())
continue;
- if (child->name() == "index.html") {
+ if (child->name() == "index.html" || child->name() == "index") {
rootPageNode = child;
}