summaryrefslogtreecommitdiffstats
path: root/tools/qdoc3/codemarker.cpp
diff options
context:
space:
mode:
authorMartin Smith <msmith@trolltech.com>2010-03-30 11:03:10 (GMT)
committerMartin Smith <msmith@trolltech.com>2010-03-30 11:03:10 (GMT)
commit2d9260e863ff2e3a5bb77d37b2b9b90072bce825 (patch)
treee64fcf9691356c462409980272e89751948f196e /tools/qdoc3/codemarker.cpp
parentdcb055cde3a8d31e52a2d2143f14ca8662859541 (diff)
downloadQt-2d9260e863ff2e3a5bb77d37b2b9b90072bce825.zip
Qt-2d9260e863ff2e3a5bb77d37b2b9b90072bce825.tar.gz
Qt-2d9260e863ff2e3a5bb77d37b2b9b90072bce825.tar.bz2
qdoc: Added <div> elements to some html output for class references.
Task: QTBUG-9504
Diffstat (limited to 'tools/qdoc3/codemarker.cpp')
-rw-r--r--tools/qdoc3/codemarker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qdoc3/codemarker.cpp b/tools/qdoc3/codemarker.cpp
index 15f2c2d..818a91f 100644
--- a/tools/qdoc3/codemarker.cpp
+++ b/tools/qdoc3/codemarker.cpp
@@ -457,7 +457,7 @@ bool CodeMarker::insertReimpFunc(FastSection& fs, Node* node, Status status)
void CodeMarker::append(QList<Section>& sectionList, const FastSection& fs)
{
if (!fs.isEmpty()) {
- Section section(fs.name,fs.singularMember,fs.pluralMember);
+ Section section(fs.name,fs.divClass,fs.singularMember,fs.pluralMember);
section.members = fs.memberMap.values();
section.reimpMembers = fs.reimpMemberMap.values();
section.inherited = fs.inherited;