diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2008-09-28 18:54:57 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2008-09-28 18:54:57 (GMT) |
commit | 7b38eb9f5ca2c324c76f5d3b53dedfb2bd6486a0 (patch) | |
tree | 49bbfc50150f8734b5b10c2f0ea81182413c8bb7 /src/namespacedef.cpp | |
parent | ec8cd7293a58213bac5967a3a3ccc7dc55ba19fe (diff) | |
download | Doxygen-7b38eb9f5ca2c324c76f5d3b53dedfb2bd6486a0.zip Doxygen-7b38eb9f5ca2c324c76f5d3b53dedfb2bd6486a0.tar.gz Doxygen-7b38eb9f5ca2c324c76f5d3b53dedfb2bd6486a0.tar.bz2 |
Release-1.5.7
Diffstat (limited to 'src/namespacedef.cpp')
-rw-r--r-- | src/namespacedef.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/namespacedef.cpp b/src/namespacedef.cpp index a396257..ceebc6d 100644 --- a/src/namespacedef.cpp +++ b/src/namespacedef.cpp @@ -397,13 +397,14 @@ void NamespaceDef::writeDocumentation(OutputList &ol) Doxygen::searchIndex->addWord(localName(),TRUE); } - if (!Config_getString("GENERATE_TAGFILE").isEmpty()) + bool generateTagFile = !Config_getString("GENERATE_TAGFILE").isEmpty(); + if (generateTagFile) { Doxygen::tagFile << " <compound kind=\"namespace\">" << endl; Doxygen::tagFile << " <name>" << convertToXML(name()) << "</name>" << endl; Doxygen::tagFile << " <filename>" << convertToXML(getOutputFileBase()) << Doxygen::htmlFileExtension << "</filename>" << endl; } - + //---------------------------------------- start flexible part ------------------------------- #define NEW_LAYOUT @@ -552,8 +553,7 @@ void NamespaceDef::writeDocumentation(OutputList &ol) endFile(ol); - - if (!Config_getString("GENERATE_TAGFILE").isEmpty()) + if (generateTagFile) { writeDocAnchorsToTagFile(); Doxygen::tagFile << " </compound>" << endl; |