diff options
author | Martin Smith <msmith@trolltech.com> | 2009-05-18 11:16:47 (GMT) |
---|---|---|
committer | Martin Smith <msmith@trolltech.com> | 2009-05-18 11:16:47 (GMT) |
commit | dcf8e8a44867377f6f46b85aca862b48d3da5612 (patch) | |
tree | 50a1b28ccba6458bb80635db8289d23685a18e4d /tools/qdoc3 | |
parent | 59cc08796bfb88bc0010006f365f1361462761aa (diff) | |
download | Qt-dcf8e8a44867377f6f46b85aca862b48d3da5612.zip Qt-dcf8e8a44867377f6f46b85aca862b48d3da5612.tar.gz Qt-dcf8e8a44867377f6f46b85aca862b48d3da5612.tar.bz2 |
qdoc: Added back the list count that was lost in translation.
Diffstat (limited to 'tools/qdoc3')
-rw-r--r-- | tools/qdoc3/htmlgenerator.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/qdoc3/htmlgenerator.cpp b/tools/qdoc3/htmlgenerator.cpp index 295cdab..d7770bb 100644 --- a/tools/qdoc3/htmlgenerator.cpp +++ b/tools/qdoc3/htmlgenerator.cpp @@ -2248,7 +2248,8 @@ void HtmlGenerator::generateSectionInheritedList(const Section& section, if (nameAlignment) out() << "<li><div bar=2 class=\"fn\"></div>"; else - out() << (*p).second << " "; + out() << "<li><div class=\"fn\"></div>"; + out() << (*p).second << " "; if ((*p).second == 1) { out() << section.singularMember; } |