From ce9fc8957c25d31a5ee00e944fb297624013241a Mon Sep 17 00:00:00 2001 From: albert-github Date: Thu, 6 Jun 2019 19:21:00 +0200 Subject: issue #7038 Broken refman.tex with SHOW_FILES=NO and doxygen groups Only have index section when SHOW_FILES is set (analogous to index for namespaces)i --- src/index.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); -- cgit v0.12