diff options
author | Martin Smith <msmith@trolltech.com> | 2010-05-05 08:37:08 (GMT) |
---|---|---|
committer | Martin Smith <msmith@trolltech.com> | 2010-05-05 08:37:08 (GMT) |
commit | 0e5924bc207d7de29b28fb223a2027d5d2d694fa (patch) | |
tree | 6ea231b679763e19fc6b686aeef8aeea96e84047 /tools/qdoc3 | |
parent | 36e6c652bc087a6adcef1fad9f899b787e67e9af (diff) | |
download | Qt-0e5924bc207d7de29b28fb223a2027d5d2d694fa.zip Qt-0e5924bc207d7de29b28fb223a2027d5d2d694fa.tar.gz Qt-0e5924bc207d7de29b28fb223a2027d5d2d694fa.tar.bz2 |
qdoc: Removed [module name] from class ref pages.
The module name is now a breadcrumb.
Diffstat (limited to 'tools/qdoc3')
-rw-r--r-- | tools/qdoc3/htmlgenerator.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/qdoc3/htmlgenerator.cpp b/tools/qdoc3/htmlgenerator.cpp index 801e199..3120473 100644 --- a/tools/qdoc3/htmlgenerator.cpp +++ b/tools/qdoc3/htmlgenerator.cpp @@ -1243,6 +1243,8 @@ void HtmlGenerator::generateClassLikeNode(const InnerNode *inner, subtitleText << "(" << Atom(Atom::AutoLink, fullTitle) << ")" << Atom(Atom::LineBreak); +#if 0 + // No longer used because the modeule name is a breadcrumb. QString fixedModule = inner->moduleName(); if (fixedModule == "Qt3SupportLight") fixedModule = "Qt3Support"; @@ -1263,6 +1265,7 @@ void HtmlGenerator::generateClassLikeNode(const InnerNode *inner, subtitleText << "]"; } } +#endif generateHeader(title, inner, marker); sections = marker->sections(inner, CodeMarker::Summary, CodeMarker::Okay); |