summaryrefslogtreecommitdiffstats
path: root/src/htmlgen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2001-09-09 13:43:55 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2001-09-09 13:43:55 (GMT)
commite4e787013da916e7331797233c1bec05c14b1f76 (patch)
tree145c4c47312e94921350f78dad318333913db263 /src/htmlgen.cpp
parent1fb3a77524a31472d1ecb9bafb3491ddbbd096e3 (diff)
downloadDoxygen-e4e787013da916e7331797233c1bec05c14b1f76.zip
Doxygen-e4e787013da916e7331797233c1bec05c14b1f76.tar.gz
Doxygen-e4e787013da916e7331797233c1bec05c14b1f76.tar.bz2
Release-1.2.10-20010909
Diffstat (limited to 'src/htmlgen.cpp')
-rw-r--r--src/htmlgen.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp
index 31c24fc..2320473 100644
--- a/src/htmlgen.cpp
+++ b/src/htmlgen.cpp
@@ -831,7 +831,7 @@ void HtmlGenerator::endAlphabeticalIndexList()
void HtmlGenerator::writeIndexHeading(const char *s)
{
t << "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><div class=\"ah\">&nbsp;&nbsp;" << s
- << "&nbsp;&nbsp;</td</tr></table>";
+ << "&nbsp;&nbsp;</td></tr></table>";
}
void HtmlGenerator::startImage(const char *name,const char *,bool hasCaption)
@@ -940,7 +940,7 @@ void HtmlGenerator::startParameterType(bool first)
if (first)
{
DBG_HTML(t << "<!-- startFirstParameterType -->" << endl;)
- t << " <td class=\"md\">";
+ t << " <td class=\"md\" nowrap>";
}
else
{
@@ -948,14 +948,14 @@ void HtmlGenerator::startParameterType(bool first)
t << " <tr>" << endl;
t << " <td></td>" << endl;
t << " <td></td>" << endl;
- t << " <td class=\"md\">";
+ t << " <td class=\"md\" nowrap>";
}
}
void HtmlGenerator::endParameterType()
{
DBG_HTML(t << "<!-- endParameterType -->" << endl;)
- t << "</td>" << endl;
+ t << "&nbsp;</td>" << endl;
}
void HtmlGenerator::startParameterName(bool oneArgOnly)