diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2018-08-26 11:53:48 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2018-08-26 11:53:48 (GMT) |
commit | a2ea725e1b0070ee8bcf55683157e67f5f727254 (patch) | |
tree | b0937b7106fafdf812c4faa9d5bf600279dc0afa /src/classdef.cpp | |
parent | a77fed0a607887a9ea023791b13e227a44eb82fc (diff) | |
download | Doxygen-a2ea725e1b0070ee8bcf55683157e67f5f727254.zip Doxygen-a2ea725e1b0070ee8bcf55683157e67f5f727254.tar.gz Doxygen-a2ea725e1b0070ee8bcf55683157e67f5f727254.tar.bz2 |
Renamed (start/end)SimpleSect to (start/end)Examples.
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 83a29ed..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(BaseOutputDocInterface::Examples); + ol.endExamples(); } //ol.newParagraph(); writeSourceDef(ol,name()); |