diff options
author | Martin Smith <msmith@trolltech.com> | 2009-06-04 06:57:43 (GMT) |
---|---|---|
committer | Martin Smith <msmith@trolltech.com> | 2009-06-04 06:59:00 (GMT) |
commit | 85d6409aa650272e1956a7e8f2064d453a6203ad (patch) | |
tree | 4c3ff22eb6db6fec6d2bdf6f937f42ee09d24aa4 /tools | |
parent | b1b09172aee658e085423ddf6abfea291a072c74 (diff) | |
download | Qt-85d6409aa650272e1956a7e8f2064d453a6203ad.zip Qt-85d6409aa650272e1956a7e8f2064d453a6203ad.tar.gz Qt-85d6409aa650272e1956a7e8f2064d453a6203ad.tar.bz2 |
qdoc: Reset the memItemLeft width property to 200.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/qdoc3/htmlgenerator.cpp | 2 | ||||
-rw-r--r-- | tools/qdoc3/test/classic.css | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/qdoc3/htmlgenerator.cpp b/tools/qdoc3/htmlgenerator.cpp index 422e956..a2a7184 100644 --- a/tools/qdoc3/htmlgenerator.cpp +++ b/tools/qdoc3/htmlgenerator.cpp @@ -2323,7 +2323,7 @@ QString HtmlGenerator::highlightedCode(const QString& markedCode, for (int i = 0, n = src.size(); i < n;) { if (src.at(i) == charLangle && src.at(i + 1).unicode() == '@') { if (nameAlignment) // && (i != 0)) Why was this here? - html += " </td><td class=\"memItemRight\" valign=\"bottom\">"; + html += "</td><td class=\"memItemRight\" valign=\"bottom\">"; i += 2; if (parseArg(src, linkTag, &i, n, &arg, &par1)) { QString link = linkForNode( diff --git a/tools/qdoc3/test/classic.css b/tools/qdoc3/test/classic.css index 5239856..fa0167b 100644 --- a/tools/qdoc3/test/classic.css +++ b/tools/qdoc3/test/classic.css @@ -66,7 +66,7 @@ body } table td.memItemLeft { - width: 100px; + width: 200px; padding: 1px 0px 0px 8px; margin: 4px; border-top-width: 1px; |