diff options
author | David Boddie <dboddie@trolltech.com> | 2010-02-25 18:17:16 (GMT) |
---|---|---|
committer | David Boddie <dboddie@trolltech.com> | 2010-02-25 18:17:16 (GMT) |
commit | cf58c6bd5204edaff0a34bae5312798fc3700c94 (patch) | |
tree | 600e48add5404922ee866fe0bdf5f36340dfba39 /tools/qdoc3/generator.cpp | |
parent | 2d89ee9cc302f7d381275a112e1c8a5de55ec286 (diff) | |
parent | ff8c63b4b40b26291f8847830e04f773dc1a1e71 (diff) | |
download | Qt-cf58c6bd5204edaff0a34bae5312798fc3700c94.zip Qt-cf58c6bd5204edaff0a34bae5312798fc3700c94.tar.gz Qt-cf58c6bd5204edaff0a34bae5312798fc3700c94.tar.bz2 |
Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/oslo-staging-1
Diffstat (limited to 'tools/qdoc3/generator.cpp')
-rw-r--r-- | tools/qdoc3/generator.cpp | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/tools/qdoc3/generator.cpp b/tools/qdoc3/generator.cpp index a7ab453..6a8899a 100644 --- a/tools/qdoc3/generator.cpp +++ b/tools/qdoc3/generator.cpp @@ -1186,32 +1186,6 @@ void Generator::appendSortedNames(Text& text, } } -void Generator::appendSortedNames(Text& text, - const Node* base, - const NodeList& subs, - CodeMarker *marker) -{ - NodeList::ConstIterator r; - QMap<QString,Text> classMap; - int index = 0; - - r = subs.begin(); - while (r != subs.end()) { - Text className; - appendFullName(className, (*r), base, marker); - classMap[className.toString().toLower()] = className; - ++r; - } - - QStringList classNames = classMap.keys(); - classNames.sort(); - - foreach (const QString &className, classNames) { - text << classMap[className]; - text << separator(index++, classNames.count()); - } -} - int Generator::skipAtoms(const Atom *atom, Atom::Type type) const { int skipAhead = 0; |