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/classdef.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/classdef.cpp')
-rw-r--r-- | src/classdef.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/classdef.cpp b/src/classdef.cpp index 49846b6..227f18e 100644 --- a/src/classdef.cpp +++ b/src/classdef.cpp @@ -973,9 +973,13 @@ void ClassDef::writeDocumentation(OutputList &ol) } // repeat brief description - if (!briefDescription().isEmpty()) + if (!briefDescription().isEmpty() && Config::repeatBriefFlag) { ol+=briefOutput; + } + if (!briefDescription().isEmpty() && Config::repeatBriefFlag && + !documentation().isEmpty()) + { ol.newParagraph(); } // write documentation |