summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-01-10 18:33:29 (GMT)
committerGitHub <noreply@github.com>2019-01-10 18:33:29 (GMT)
commit7f6815973d3d4db95b4a97a851c7839da632fab8 (patch)
tree6fce1926f9ee2f8ca3bd2b0d259f178a600b47e6
parent8f70309916332fba907f0d8f5df627c2f31149c3 (diff)
parenta0be73d6eb529295cbc8fdfe0a0bbf38ebf5a0c2 (diff)
downloadDoxygen-7f6815973d3d4db95b4a97a851c7839da632fab8.zip
Doxygen-7f6815973d3d4db95b4a97a851c7839da632fab8.tar.gz
Doxygen-7f6815973d3d4db95b4a97a851c7839da632fab8.tar.bz2
Merge pull request #6740 from albert-github/feature/issue_6727
issue #6727 SHOW_NAMESPACES = NO breaks latex PDF
-rw-r--r--src/index.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.cpp b/src/index.cpp
index 7bb9574..5d16e4e 100644
--- a/src/index.cpp
+++ b/src/index.cpp
@@ -4670,7 +4670,7 @@ static void writeIndex(OutputList &ol)
ol.parseText(/*projPrefix+*/ theTranslator->trModuleIndex());
ol.endIndexSection(isModuleIndex);
}
- if (documentedNamespaces>0)
+ if (Config_getBool(SHOW_NAMESPACES) && (documentedNamespaces>0))
{
ol.startIndexSection(isNamespaceIndex);
ol.parseText(/*projPrefix+*/(fortranOpt?theTranslator->trModulesIndex():theTranslator->trNamespaceIndex()));