diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-10-07 14:42:40 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-10-07 14:42:40 (GMT) |
commit | f12c78472b4ea2f6b82c241a345af5da3d4973b9 (patch) | |
tree | d8a25d9352ffbba6e6fc08e678d7465211198851 /src/htmlgen.cpp | |
parent | c52e719895be2a133e6574573584df5a91b98ec6 (diff) | |
download | Doxygen-f12c78472b4ea2f6b82c241a345af5da3d4973b9.zip Doxygen-f12c78472b4ea2f6b82c241a345af5da3d4973b9.tar.gz Doxygen-f12c78472b4ea2f6b82c241a345af5da3d4973b9.tar.bz2 |
Release-1.2.11.1
Diffstat (limited to 'src/htmlgen.cpp')
-rw-r--r-- | src/htmlgen.cpp | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp index 8ef3df0..e3ec9e3 100644 --- a/src/htmlgen.cpp +++ b/src/htmlgen.cpp @@ -943,7 +943,7 @@ void HtmlGenerator::endMemberDocName() void HtmlGenerator::startParameterList() { DBG_HTML(t << "<!-- startParameterList -->" << endl;) - t << " <td class=\"md\">( </td>" << endl; + t << " <td class=\"md\" valign=\"top\">( </td>" << endl; } void HtmlGenerator::startParameterType(bool first) @@ -951,7 +951,7 @@ void HtmlGenerator::startParameterType(bool first) if (first) { DBG_HTML(t << "<!-- startFirstParameterType -->" << endl;) - t << " <td class=\"md\" nowrap>"; + t << " <td class=\"md\" nowrap valign=\"top\">"; } else { @@ -973,8 +973,11 @@ void HtmlGenerator::startParameterName(bool oneArgOnly) { DBG_HTML(t << "<!-- startParameterName -->" << endl;) t << " <td class=\"mdname"; - if (oneArgOnly) t << "1"; - t << "\"> "; + if (oneArgOnly) + { + t << "1\" valign=\"top"; + } + t << "\" nowrap> "; } void HtmlGenerator::endParameterName(bool last,bool emptyList) @@ -985,8 +988,8 @@ void HtmlGenerator::endParameterName(bool last,bool emptyList) if (emptyList) { t << " </td>" << endl; - t << " <td class=\"md\">) </td>" << endl; - t << " <td class=\"md\">"; + t << " <td class=\"md\" valign=\"top\">) </td>" << endl; + t << " <td class=\"md\" nowrap>"; } else { |