diff options
author | Martin Smith <martin.smith@nokia.com> | 2010-09-15 09:36:51 +0200 |
---|---|---|
committer | Martin Smith <martin.smith@nokia.com> | 2010-09-15 09:36:51 +0200 |
commit | 66420856664c7a412b3c9efe4be6ff7a6061e5f2 (patch) | |
tree | 0b349bdae3abc73fda475b86a892bef0b1c9072b /tools/qdoc3/htmlgenerator.cpp | |
parent | 8399cce50eb11db885e67a52055505951309cae8 (diff) | |
download | qt4-tools-66420856664c7a412b3c9efe4be6ff7a6061e5f2.tar.gz |
qdoc: Fixed an html formatting error in the QML property list.
Diffstat (limited to 'tools/qdoc3/htmlgenerator.cpp')
-rw-r--r-- | tools/qdoc3/htmlgenerator.cpp | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/tools/qdoc3/htmlgenerator.cpp b/tools/qdoc3/htmlgenerator.cpp index bc71b6e276..5934319fbc 100644 --- a/tools/qdoc3/htmlgenerator.cpp +++ b/tools/qdoc3/htmlgenerator.cpp @@ -4185,36 +4185,16 @@ void HtmlGenerator::generateQmlSummary(const Section& section, CodeMarker *marker) { if (!section.members.isEmpty()) { - NodeList::ConstIterator m; - int count = section.members.size(); - bool twoColumn = false; - if (section.members.first()->type() == Node::QmlProperty) { - twoColumn = (count >= 5); - twoColumn = false; - } - if (twoColumn) - out() << "<table class=\"qmlsummary\">\n"; - if (++numTableRows % 2 == 1) - out() << "<tr class=\"odd topAlign\">"; - else - out() << "<tr class=\"even topAlign\">"; - // << "<tr><td class=\"topAlign\">"; out() << "<ul>\n"; - - int row = 0; + NodeList::ConstIterator m; m = section.members.begin(); while (m != section.members.end()) { - if (twoColumn && row == (int) (count + 1) / 2) - out() << "</ul></td><td class=\"topAlign\"><ul>\n"; out() << "<li class=\"fn\">"; generateQmlItem(*m,relative,marker,true); out() << "</li>\n"; - row++; ++m; } out() << "</ul>\n"; - if (twoColumn) - out() << "</td></tr>\n</table>\n"; } } |