diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-11-15 14:41:06 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-11-15 14:41:06 (GMT) |
commit | e952dab58265a6f21867e51f72d7d81ffe39e082 (patch) | |
tree | aa3814339507e0a58216fe75837a5f055b2405e2 /src/namespacedef.cpp | |
parent | c400bd439b3df09704e33df382ed7b08f80dd8ed (diff) | |
download | Doxygen-e952dab58265a6f21867e51f72d7d81ffe39e082.zip Doxygen-e952dab58265a6f21867e51f72d7d81ffe39e082.tar.gz Doxygen-e952dab58265a6f21867e51f72d7d81ffe39e082.tar.bz2 |
Release-1.3-rc1
Diffstat (limited to 'src/namespacedef.cpp')
-rw-r--r-- | src/namespacedef.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/namespacedef.cpp b/src/namespacedef.cpp index 0f32a94..b0842f5 100644 --- a/src/namespacedef.cpp +++ b/src/namespacedef.cpp @@ -207,7 +207,13 @@ void NamespaceDef::writeDetailedDocumentation(OutputList &ol) if (!briefDescription().isEmpty() && Config_getBool("REPEAT_BRIEF") && !documentation().isEmpty()) { - ol.newParagraph(); + ol.pushGeneratorState(); + ol.disable(OutputGenerator::Man); + ol.newParagraph(); + ol.enableAll(); + ol.disableAllBut(OutputGenerator::Man); + ol.writeString("\n\n"); + ol.popGeneratorState(); } if (!documentation().isEmpty()) { |