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/outputlist.h | |
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/outputlist.h')
-rw-r--r-- | src/outputlist.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/outputlist.h b/src/outputlist.h index 07c5207..5fd8017 100644 --- a/src/outputlist.h +++ b/src/outputlist.h @@ -321,11 +321,10 @@ class OutputList : public OutputDocInterface const char *title,const char *name) { forall(&OutputGenerator::writeInheritedSectionTitle,id,ref, file,anchor,title,name); } - void startSimpleSect(SectionTypes t,const char *file,const char *anchor, - const char *title) - { forall(&OutputGenerator::startSimpleSect,t,file,anchor,title); } - void endSimpleSect(SectionTypes t) - { forall(&OutputGenerator::endSimpleSect,t); } + void startExamples() + { forall(&OutputGenerator::startExamples); } + void endExamples() + { forall(&OutputGenerator::endExamples); } void startParamList(ParamListTypes t,const char *title) { forall(&OutputGenerator::startParamList,t,title); } void endParamList() |