diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-08-19 18:13:14 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-08-19 18:13:14 (GMT) |
commit | 2f7902073680b977b74f3faeada95119ec767eb3 (patch) | |
tree | 3ff0575884709cdc92f9e462441672f3549ab054 /src/htmlgen.h | |
parent | eed6800521ab6f21c41f485820ec1ee2def42e94 (diff) | |
download | Doxygen-2f7902073680b977b74f3faeada95119ec767eb3.zip Doxygen-2f7902073680b977b74f3faeada95119ec767eb3.tar.gz Doxygen-2f7902073680b977b74f3faeada95119ec767eb3.tar.bz2 |
Release-1.2.9-20010819
Diffstat (limited to 'src/htmlgen.h')
-rw-r--r-- | src/htmlgen.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/htmlgen.h b/src/htmlgen.h index 6f60593..dd58281 100644 --- a/src/htmlgen.h +++ b/src/htmlgen.h @@ -176,11 +176,10 @@ class HtmlGenerator : public OutputGenerator void writeRing(char c) { t << "&" << c << "ring;"; } void writeSharpS() { t << "ß"; } void writeCCedil(char c) { t << "&" << c << "cedil;"; } - void startDescList() { t << "<dl compact><dt><b>" << endl; } + void startDescList(SectionTypes) { t << "<dl compact><dt><b>" << endl; } void endDescList() { t << "</dl>"; } - void startParamList(ParamListTypes) - { startDescList(); } - void endParamList() { endDescList(); } + void startParamList(ParamListTypes) { t << "<dl compact><dt><b>" << endl; } + void endParamList() { t << "</dl>"; } void endDescTitle() { t << "</b>"; } void writeDescItem() { t << "<dd>" << endl; } void startSection(const char *,const char *,bool); @@ -204,6 +203,8 @@ class HtmlGenerator : public OutputGenerator void writeNonBreakableSpace(int); void startImage(const char *,const char *,bool); void endImage(bool); + void startDotFile(const char *,bool); + void endDotFile(bool); void startDescTable() { t << "<table border=0 cellspacing=2 cellpadding=0>" << endl; } |