summaryrefslogtreecommitdiffstats
path: root/src/classdef.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-04-30 17:13:40 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-04-30 17:13:40 (GMT)
commit26b5069ce70ddad043040a06b984beef02b89994 (patch)
treee8fc87186141ebce1c8547a44d7adcd0ec122e14 /src/classdef.cpp
parente2b4a623decf7c8b4435f742f05d07323ad8d6f2 (diff)
downloadDoxygen-26b5069ce70ddad043040a06b984beef02b89994.zip
Doxygen-26b5069ce70ddad043040a06b984beef02b89994.tar.gz
Doxygen-26b5069ce70ddad043040a06b984beef02b89994.tar.bz2
Release-1.1.2-20000430
Diffstat (limited to 'src/classdef.cpp')
-rw-r--r--src/classdef.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/classdef.cpp b/src/classdef.cpp
index c7ac3ca..eeeee96 100644
--- a/src/classdef.cpp
+++ b/src/classdef.cpp
@@ -774,9 +774,9 @@ void ClassDef::writeDocumentation(OutputList &ol)
// write detailed description
bool exampleFlag=hasExamples();
- if (!briefDescription().isEmpty() ||
+ if ((!briefDescription().isEmpty() && Config::repeatBriefFlag) ||
!documentation().isEmpty() ||
- (startBodyLine!=-1 && bodyDef) ||
+ /*(Config::sourceBrowseFlag && startBodyLine!=-1 && bodyDef) ||*/
exampleFlag)
{
ol.writeRuler();
@@ -884,15 +884,15 @@ void ClassDef::writeDocumentation(OutputList &ol)
enumMembers.writeDocumentation(ol,name());
}
- enumValMembers.countDocMembers();
- if (enumValMembers.totalCount()>0)
- {
- ol.writeRuler();
- ol.startGroupHeader();
- parseText(ol,theTranslator->trEnumerationValueDocumentation());
- ol.endGroupHeader();
- enumValMembers.writeDocumentation(ol,name());
- }
+ //enumValMembers.countDocMembers();
+ //if (enumValMembers.totalCount()>0)
+ //{
+ // ol.writeRuler();
+ // ol.startGroupHeader();
+ // parseText(ol,theTranslator->trEnumerationValueDocumentation());
+ // ol.endGroupHeader();
+ // enumValMembers.writeDocumentation(ol,name());
+ //}
constructors.countDocMembers();
if (constructors.totalCount()>0)