summaryrefslogtreecommitdiffstats
path: root/src/classdef.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-06-29 14:46:09 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-06-29 14:46:09 (GMT)
commit12eaf6afe565ae1f7d440080205ddb76585bd31d (patch)
tree94c4a9072b0cb00c826149bc629821166b431c25 /src/classdef.cpp
parent154e877cc2e8b10091d7e0068b6f6d5793cd29f3 (diff)
downloadDoxygen-12eaf6afe565ae1f7d440080205ddb76585bd31d.zip
Doxygen-12eaf6afe565ae1f7d440080205ddb76585bd31d.tar.gz
Doxygen-12eaf6afe565ae1f7d440080205ddb76585bd31d.tar.bz2
Bug 693515 - The 'Examples:' section; bad/missing style and incorrect spelling
Made implementation analogous to the implementation for parameters in respect to padding and the use of colon (:).
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 4977760..8a1bff1 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.startSimpleSect(BaseOutputDocInterface::Examples,0,0,theTranslator->trExamples());
ol.startDescForItem();
//ol.startParagraph();
writeExample(ol,m_impl->exampleSDict);
//ol.endParagraph();
ol.endDescForItem();
- ol.endSimpleSect();
+ ol.endSimpleSect(BaseOutputDocInterface::Examples);
}
//ol.newParagraph();
writeSourceDef(ol,name());