summaryrefslogtreecommitdiffstats
path: root/src/latexgen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2018-08-26 11:53:48 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2018-08-26 11:53:48 (GMT)
commita2ea725e1b0070ee8bcf55683157e67f5f727254 (patch)
treeb0937b7106fafdf812c4faa9d5bf600279dc0afa /src/latexgen.cpp
parenta77fed0a607887a9ea023791b13e227a44eb82fc (diff)
downloadDoxygen-a2ea725e1b0070ee8bcf55683157e67f5f727254.zip
Doxygen-a2ea725e1b0070ee8bcf55683157e67f5f727254.tar.gz
Doxygen-a2ea725e1b0070ee8bcf55683157e67f5f727254.tar.bz2
Renamed (start/end)SimpleSect to (start/end)Examples.
Diffstat (limited to 'src/latexgen.cpp')
-rw-r--r--src/latexgen.cpp14
1 files changed, 3 insertions, 11 deletions
diff --git a/src/latexgen.cpp b/src/latexgen.cpp
index a0390be..204683e 100644
--- a/src/latexgen.cpp
+++ b/src/latexgen.cpp
@@ -2095,22 +2095,14 @@ void LatexGenerator::endDescItem()
}
}
-void LatexGenerator::startSimpleSect(SectionTypes,const char *file,
- const char *anchor,const char *title)
+void LatexGenerator::startExamples()
{
t << "\\begin{Desc}\n\\item[";
- if (file)
- {
- writeObjectLink(0,file,anchor,title);
- }
- else
- {
- docify(title);
- }
+ docify(theTranslator->trExamples());
t << "]";
}
-void LatexGenerator::endSimpleSect(SectionTypes)
+void LatexGenerator::endExamples()
{
t << "\\end{Desc}" << endl;
}