diff options
Diffstat (limited to 'src/htmlgen.h')
-rw-r--r-- | src/htmlgen.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/htmlgen.h b/src/htmlgen.h index 55322ed..1075e49 100644 --- a/src/htmlgen.h +++ b/src/htmlgen.h @@ -191,8 +191,10 @@ class HtmlGenerator : public OutputGenerator void writeCCedil(char c) { t << "&" << c << "cedil;"; } void startDescList(SectionTypes) { t << "<dl compact><dt><b>" << endl; } void endDescList() { t << "</dl>"; } - void startParamList(ParamListTypes) { t << "<dl compact><dt><b>" << endl; } - void endParamList() { t << "</dl>"; } + void startSimpleSect(SectionTypes,const char *,const char *,const char *); + void endSimpleSect(); + void startParamList(ParamListTypes,const char *); + void endParamList(); void endDescTitle() { t << "</b>"; } void writeDescItem() { t << "<dd>" << endl; } void startSection(const char *,const char *,bool); |