diff options
Diffstat (limited to 'src/groupdef.cpp')
-rw-r--r-- | src/groupdef.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/groupdef.cpp b/src/groupdef.cpp index a4d7924..925dd78 100644 --- a/src/groupdef.cpp +++ b/src/groupdef.cpp @@ -139,6 +139,7 @@ void GroupDef::writeDocumentation(OutputList &ol) ol.startMemberHeader(); parseText(ol,theTranslator->trFiles()); ol.endMemberHeader(); + ol.startMemberList(); FileDef *fd=fileList->first(); while (fd) { @@ -156,6 +157,7 @@ void GroupDef::writeDocumentation(OutputList &ol) } fd=fileList->next(); } + ol.endMemberList(); } if (classList->count()>0) { @@ -168,6 +170,7 @@ void GroupDef::writeDocumentation(OutputList &ol) ol.startMemberHeader(); parseText(ol,theTranslator->trCompounds()); ol.endMemberHeader(); + ol.startMemberList(); found=TRUE; } QCString type; @@ -193,6 +196,7 @@ void GroupDef::writeDocumentation(OutputList &ol) } cd=classList->next(); } + if (found) ol.endMemberList(); } if (allMemberList->count()>0) { |