diff options
Diffstat (limited to 'src/groupdef.cpp')
-rw-r--r-- | src/groupdef.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/groupdef.cpp b/src/groupdef.cpp index fd82f35..e9507ad 100644 --- a/src/groupdef.cpp +++ b/src/groupdef.cpp @@ -479,10 +479,13 @@ void GroupDef::writeDocumentation(OutputList &ol) ol.pushGeneratorState(); ol.disable(OutputGenerator::Latex); ol.disable(OutputGenerator::RTF); + ol.disable(OutputGenerator::Man); ol.startTextLink(0,"_details"); ol.parseText(theTranslator->trMore()); ol.endTextLink(); - //ol.enable(OutputGenerator::Latex); + ol.enableAll(); + ol.disableAllBut(OutputGenerator::Man); + ol.newParagraph(); ol.popGeneratorState(); } |