summaryrefslogtreecommitdiffstats
path: root/src/htmlgen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2000-09-17 18:25:49 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2000-09-17 18:25:49 (GMT)
commiteb31c4be6b40007136845029ee462bdbcb342736 (patch)
tree5aba5305b3e7b2fb117c2057d11523840af09720 /src/htmlgen.cpp
parentb91275de37e317332d5c461e4d66a8685e682f80 (diff)
downloadDoxygen-eb31c4be6b40007136845029ee462bdbcb342736.zip
Doxygen-eb31c4be6b40007136845029ee462bdbcb342736.tar.gz
Doxygen-eb31c4be6b40007136845029ee462bdbcb342736.tar.bz2
Release-1.2.1-20000917
Diffstat (limited to 'src/htmlgen.cpp')
-rw-r--r--src/htmlgen.cpp7
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;
}