diff options
Diffstat (limited to 'src/classdef.cpp')
-rw-r--r-- | src/classdef.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/classdef.cpp b/src/classdef.cpp index 1231e09..9f8f4df 100644 --- a/src/classdef.cpp +++ b/src/classdef.cpp @@ -728,14 +728,11 @@ void ClassDef::writeDetailedDescription(OutputList &ol, OutputList &briefOutput, // write examples if (exampleFlag) { - ol.startDescList(BaseOutputDocInterface::Examples); - parseText(ol,theTranslator->trExamples()+": "); - ol.endDescTitle(); + ol.startSimpleSect(BaseOutputDocInterface::Examples,0,0,theTranslator->trExamples()+": "); ol.writeDescItem(); ol.newParagraph(); writeExample(ol,m_exampleSDict); - //ol.endDescItem(); - ol.endDescList(); + ol.endSimpleSect(); } ol.newParagraph(); writeSourceDef(ol,name()); |