diff options
author | Mattias Ellert <mattias.ellert@fysast.uu.se> | 2014-08-24 15:07:52 (GMT) |
---|---|---|
committer | Mattias Ellert <mattias.ellert@fysast.uu.se> | 2014-08-24 15:07:52 (GMT) |
commit | e1aa7af27eded7afdf81b688015421d3b3467b2b (patch) | |
tree | ec0e7cbc03fd122e44bdd58734b4772dfdd08ca7 | |
parent | ef2e29a8720cf609bee75f545b38b85139fd04ee (diff) | |
download | Doxygen-e1aa7af27eded7afdf81b688015421d3b3467b2b.zip Doxygen-e1aa7af27eded7afdf81b688015421d3b3467b2b.tar.gz Doxygen-e1aa7af27eded7afdf81b688015421d3b3467b2b.tar.bz2 |
Fix for https://bugzilla.gnome.org/show_bug.cgi?id=651850
-rw-r--r-- | src/groupdef.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/groupdef.cpp b/src/groupdef.cpp index f1d1877..ae785e7 100644 --- a/src/groupdef.cpp +++ b/src/groupdef.cpp @@ -941,7 +941,15 @@ void GroupDef::writeDocumentation(OutputList &ol) ol.parseText(title); ol.popGeneratorState(); addGroupListToTitle(ol,this); + ol.pushGeneratorState(); + ol.disable(OutputGenerator::Man); ol.endTitleHead(getOutputFileBase(),title); + ol.popGeneratorState(); + ol.pushGeneratorState(); + ol.disableAllBut(OutputGenerator::Man); + ol.endTitleHead(getOutputFileBase(),name()); + ol.parseText(title); + ol.popGeneratorState(); ol.endHeaderSection(); ol.startContents(); |