diff options
author | Martin Smith <martin.smith@nokia.com> | 2010-05-21 08:53:55 (GMT) |
---|---|---|
committer | Martin Smith <martin.smith@nokia.com> | 2010-05-21 08:53:55 (GMT) |
commit | 04ad0950378fb4255064c10d5a4d64c1074035ed (patch) | |
tree | de90bb5961509bc161b3aeb730f9c56178b1c06e /tools | |
parent | 9ad82755f62b7fb5e303bf5f8ee2bb8e4afb7f8d (diff) | |
download | Qt-04ad0950378fb4255064c10d5a4d64c1074035ed.zip Qt-04ad0950378fb4255064c10d5a4d64c1074035ed.tar.gz Qt-04ad0950378fb4255064c10d5a4d64c1074035ed.tar.bz2 |
qdoc: Fixed html error, but the problem is still there.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/qdoc3/htmlgenerator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qdoc3/htmlgenerator.cpp b/tools/qdoc3/htmlgenerator.cpp index 1872d87..cf8ea7c 100644 --- a/tools/qdoc3/htmlgenerator.cpp +++ b/tools/qdoc3/htmlgenerator.cpp @@ -2482,7 +2482,7 @@ void HtmlGenerator::generateCompactList(const Node *relative, out() << "<div class=\"flowListDiv\">\n"; for (k = 0; k < numRows; k++) { if (++numTableRows % 2 == 1) - out() << "<dl class=\"flowList odd\""; + out() << "<dl class=\"flowList odd\">"; else out() << "<dl class=\"flowList even\">"; //break; |