diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-11-19 15:15:27 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-11-19 15:15:27 (GMT) |
commit | f769c300f488c8ab450622701dcebee19e2dc332 (patch) | |
tree | 73fb7f0440c64c3b3ce21bfc475058ffb46a5bfc /src/namespacedef.cpp | |
parent | dd4999a16d69ec0784e2e2bd43f22fbaf4451f1f (diff) | |
download | Doxygen-f769c300f488c8ab450622701dcebee19e2dc332.zip Doxygen-f769c300f488c8ab450622701dcebee19e2dc332.tar.gz Doxygen-f769c300f488c8ab450622701dcebee19e2dc332.tar.bz2 |
Release-1.2.3-20001119
Diffstat (limited to 'src/namespacedef.cpp')
-rw-r--r-- | src/namespacedef.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/namespacedef.cpp b/src/namespacedef.cpp index 8badc81..6377295 100644 --- a/src/namespacedef.cpp +++ b/src/namespacedef.cpp @@ -251,9 +251,13 @@ void NamespaceDef::writeDocumentation(OutputList &ol) parseText(ol,theTranslator->trDetailedDescription()); ol.endGroupHeader(); ol.startTextBlock(); - if (!briefDescription().isEmpty()) + if (!briefDescription().isEmpty() && Config::repeatBriefFlag) { ol+=briefOutput; + } + if (!briefDescription().isEmpty() && Config::repeatBriefFlag && + !documentation().isEmpty()) + { ol.newParagraph(); } if (!documentation().isEmpty()) |