diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-09-17 18:25:49 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-09-17 18:25:49 (GMT) |
commit | d84f6a6a5273a62633fa360133356bc68e3ba289 (patch) | |
tree | 5aba5305b3e7b2fb117c2057d11523840af09720 /src/htmlgen.cpp | |
parent | 69ead65c747f7fa7817c0a754dfe2662004037a1 (diff) | |
download | Doxygen-d84f6a6a5273a62633fa360133356bc68e3ba289.zip Doxygen-d84f6a6a5273a62633fa360133356bc68e3ba289.tar.gz Doxygen-d84f6a6a5273a62633fa360133356bc68e3ba289.tar.bz2 |
Release-1.2.1-20000917
Diffstat (limited to 'src/htmlgen.cpp')
-rw-r--r-- | src/htmlgen.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp index e8cdc15..9703d81 100644 --- a/src/htmlgen.cpp +++ b/src/htmlgen.cpp @@ -449,11 +449,14 @@ void HtmlGenerator::endGroupHeader() t << "</h2>" << endl; } -void HtmlGenerator::writeSection(const char *lab,const char *title,bool sub) +void HtmlGenerator::startSection(const char *lab,const char *,bool sub) { t << "<a name=\"" << lab << "\">"; if (sub) t << "<h3>"; else t << "<h2>"; - docify(title); +} + +void HtmlGenerator::endSection(const char *,bool sub) +{ if (sub) t << "</h3>"; else t << "</h2>"; t << "</a>" << endl; } |