diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-06-10 08:35:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-10 08:35:34 (GMT) |
commit | 83b756842fc0bbaded6a778f05ce70580cce2eef (patch) | |
tree | 93c0a148a74d78ef70f3fcd63f3a49f012f70597 | |
parent | 0272374c07ef027a6ed6c94bf2f68826a93230a9 (diff) | |
parent | ce9fc8957c25d31a5ee00e944fb297624013241a (diff) | |
download | Doxygen-83b756842fc0bbaded6a778f05ce70580cce2eef.zip Doxygen-83b756842fc0bbaded6a778f05ce70580cce2eef.tar.gz Doxygen-83b756842fc0bbaded6a778f05ce70580cce2eef.tar.bz2 |
Merge pull request #7039 from albert-github/feature/issue_7038
issue #7038 Broken refman.tex with SHOW_FILES=NO and doxygen groups
-rw-r--r-- | src/index.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.cpp b/src/index.cpp index a577d9a..ff22a60 100644 --- a/src/index.cpp +++ b/src/index.cpp @@ -4730,7 +4730,7 @@ static void writeIndex(OutputList &ol) ol.parseText(/*projPrefix+*/theTranslator->trExceptionIndex()); ol.endIndexSection(isCompoundIndex); } - if (documentedFiles>0) + if (Config_getBool(SHOW_FILES) && (documentedFiles>0)) { ol.startIndexSection(isFileIndex); ol.parseText(/*projPrefix+*/theTranslator->trFileIndex()); |