summaryrefslogtreecommitdiffstats
path: root/src/htmlgen.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/htmlgen.h')
-rw-r--r--src/htmlgen.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/htmlgen.h b/src/htmlgen.h
index e817cc2..c0fb455 100644
--- a/src/htmlgen.h
+++ b/src/htmlgen.h
@@ -179,9 +179,11 @@ class HtmlGenerator : public OutputGenerator
void writeRing(char c) { t << "&" << c << "ring;"; }
void writeSharpS() { t << "&szlig;"; }
void startDescList() { t << "<dl compact><dt>" << endl; }
+ void endDescList() { t << "</dl>"; }
+ void startParamList() { startDescList(); }
+ void endParamList() { endDescList(); }
void endDescTitle() {}
void writeDescItem() { t << "<dd>" << endl; }
- void endDescList() { t << "</dl>"; }
void startSection(const char *,const char *,bool);
void endSection(const char *,bool);
void writeSectionRef(const char *,const char *,const char *,const char *);