diff options
author | Charles.Lee <cheoljoo.lee@lge.com> | 2018-08-27 03:27:58 (GMT) |
---|---|---|
committer | Charles.Lee <cheoljoo.lee@lge.com> | 2018-08-27 03:27:58 (GMT) |
commit | bfaa5d268c0070849038d748df5b0db73242ea0d (patch) | |
tree | 68c55ee4f9879c3061d04037f7d54afd7b098985 /src/classdef.cpp | |
parent | ccdf5ee278d7029c055954a733f0db90e47e075d (diff) | |
parent | a3ef054f5d2af360fa7541e01a6de102d1c7c147 (diff) | |
download | Doxygen-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.cpp | 4 |
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()); |