diff options
author | Martin Smith <[email protected]> | 2012-11-06 13:44:35 +0100 |
---|---|---|
committer | Martin Smith <[email protected]> | 2012-11-06 14:09:59 +0100 |
commit | 2efbf2dbbe1ff65c0624ba05a432d0e0e4a7d92f (patch) | |
tree | 8c698bf1660c7e40a5b12e5452d403fe7c3f505d /src/tools/qdoc/puredocparser.cpp | |
parent | c808dd27459e030fde0577feb8ba06e3bd465526 (diff) |
qdoc: Added module attribute to most index elements
The index file generated by qdoc when it is run in
-prepare mode has been modified so that most elements
have a module attribute. The value of the module
attribute either came from an \inmodule command, or
it is the value of the project variable specified in
the qdocconf file that was read by qdoc.
Task number: QTBUG-27626
Change-Id: I44198bbbc1738fafc110c6b905eb1d67bc745323
Reviewed-by: Jerome Pasion <[email protected]>
Diffstat (limited to 'src/tools/qdoc/puredocparser.cpp')
-rw-r--r-- | src/tools/qdoc/puredocparser.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/qdoc/puredocparser.cpp b/src/tools/qdoc/puredocparser.cpp index cd726c34975..9f76596e468 100644 --- a/src/tools/qdoc/puredocparser.cpp +++ b/src/tools/qdoc/puredocparser.cpp @@ -195,6 +195,7 @@ bool PureDocParser::processQdocComments() while (n != nodes.end()) { processOtherMetaCommands(*d, *n); (*n)->setDoc(*d); + checkModuleInclusion(*n); if ((*n)->isInnerNode() && ((InnerNode *)*n)->includes().isEmpty()) { InnerNode *m = static_cast<InnerNode *>(*n); while (m->parent() && m->parent() != treeRoot) |