summaryrefslogtreecommitdiffstats
path: root/src/classdef.cpp
diff options
context:
space:
mode:
authorCharles.Lee <cheoljoo.lee@lge.com>2018-08-27 03:27:58 (GMT)
committerCharles.Lee <cheoljoo.lee@lge.com>2018-08-27 03:27:58 (GMT)
commitbfaa5d268c0070849038d748df5b0db73242ea0d (patch)
tree68c55ee4f9879c3061d04037f7d54afd7b098985 /src/classdef.cpp
parentccdf5ee278d7029c055954a733f0db90e47e075d (diff)
parenta3ef054f5d2af360fa7541e01a6de102d1c7c147 (diff)
downloadDoxygen-bfaa5d268c0070849038d748df5b0db73242ea0d.zip
Doxygen-bfaa5d268c0070849038d748df5b0db73242ea0d.tar.gz
Doxygen-bfaa5d268c0070849038d748df5b0db73242ea0d.tar.bz2
Merge remote-tracking branch 'upstream/master' into run_java_once
Diffstat (limited to 'src/classdef.cpp')
-rw-r--r--src/classdef.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/classdef.cpp b/src/classdef.cpp
index 657968e..1d72073 100644
--- a/src/classdef.cpp
+++ b/src/classdef.cpp
@@ -1013,13 +1013,13 @@ void ClassDef::writeDetailedDocumentationBody(OutputList &ol)
// write examples
if (hasExamples() && m_impl->exampleSDict)
{
- ol.startSimpleSect(BaseOutputDocInterface::Examples,0,0,theTranslator->trExamples()+": ");
+ ol.startExamples();
ol.startDescForItem();
//ol.startParagraph();
writeExample(ol,m_impl->exampleSDict);
//ol.endParagraph();
ol.endDescForItem();
- ol.endSimpleSect();
+ ol.endExamples();
}
//ol.newParagraph();
writeSourceDef(ol,name());