diff options
author | Martin Smith <martin.smith@nokia.com> | 2010-06-30 11:45:52 (GMT) |
---|---|---|
committer | Martin Smith <martin.smith@nokia.com> | 2010-06-30 11:45:52 (GMT) |
commit | 922493a72c033a43f59caebcd8ce7fe060df0d4c (patch) | |
tree | aeae45b9c53edbb1b17e45999437b02a310a2882 /tools/qdoc3/htmlgenerator.cpp | |
parent | dad49a41cc60e6297bd6d7099b6d06e0240c5f16 (diff) | |
download | Qt-922493a72c033a43f59caebcd8ce7fe060df0d4c.zip Qt-922493a72c033a43f59caebcd8ce7fe060df0d4c.tar.gz Qt-922493a72c033a43f59caebcd8ce7fe060df0d4c.tar.bz2 |
Stopped trying to output QML property list in 2 columns
Task-number: QTBUG-11009, QTBUG-11096
Diffstat (limited to 'tools/qdoc3/htmlgenerator.cpp')
-rw-r--r-- | tools/qdoc3/htmlgenerator.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/qdoc3/htmlgenerator.cpp b/tools/qdoc3/htmlgenerator.cpp index b93db4f..044c458 100644 --- a/tools/qdoc3/htmlgenerator.cpp +++ b/tools/qdoc3/htmlgenerator.cpp @@ -4413,6 +4413,7 @@ void HtmlGenerator::generateQmlSummary(const Section& section, bool twoColumn = false; if (section.members.first()->type() == Node::QmlProperty) { twoColumn = (count >= 5); + twoColumn = false; } if (twoColumn) out() << "<table class=\"qmlsummary\">\n"; |