summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMartin Smith <martin.smith@digia.com>2014-11-13 15:23:27 +0100
committerJani Heikkinen <jani.heikkinen@theqtcompany.com>2014-11-18 11:26:07 +0100
commite86f1ceaedba24187747ab6b1d4b4712fbcca137 (patch)
treeea9974871c5647862aa5a0999e4cd70802f99809 /src
parente37a69252eb7c564fd888361b3672cfc31eca949 (diff)
qdoc: Missing break in qdoc switch statement
There was a missing break statement in the function that generates the .index file, which caused qdoc to output extra attributes in the <module> element. Change-Id: I110c15c67a228249bfe0c7da138f2ca0b4921371 Task-number: QTBUG-42625 Reviewed-by: Topi Reiniƶ <topi.reinio@digia.com>
Diffstat (limited to 'src')
-rw-r--r--src/tools/qdoc/qdocindexfiles.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/qdoc/qdocindexfiles.cpp b/src/tools/qdoc/qdocindexfiles.cpp
index 7445292a56..00041b2b65 100644
--- a/src/tools/qdoc/qdocindexfiles.cpp
+++ b/src/tools/qdoc/qdocindexfiles.cpp
@@ -980,6 +980,7 @@ bool QDocIndexFiles::generateIndexSection(QXmlStreamWriter& writer,
if (!brief.isEmpty())
writer.writeAttribute("brief", brief);
}
+ break;
case Node::QmlModule:
{
const QmlModuleNode* qmn = static_cast<const QmlModuleNode*>(node);