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>
This commit is contained in:
Martin Smith 2014-11-13 15:23:27 +01:00 committed by Jani Heikkinen
parent e37a69252e
commit e86f1ceaed

View File

@ -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);