diff options
author | David Boddie <david.boddie@nokia.com> | 2010-12-01 10:57:35 (GMT) |
---|---|---|
committer | David Boddie <david.boddie@nokia.com> | 2010-12-01 10:57:35 (GMT) |
commit | eae5f69a23d46d237ee2021319d093c580dff679 (patch) | |
tree | 6cb158e8930ed2558bf31fab54d826d612d5ffb0 /tools/qdoc3 | |
parent | 39fde39430870467c41fbddd79b2b2d8788e45e2 (diff) | |
download | Qt-eae5f69a23d46d237ee2021319d093c580dff679.zip Qt-eae5f69a23d46d237ee2021319d093c580dff679.tar.gz Qt-eae5f69a23d46d237ee2021319d093c580dff679.tar.bz2 |
Removed an unused function.
Diffstat (limited to 'tools/qdoc3')
-rw-r--r-- | tools/qdoc3/main.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/tools/qdoc3/main.cpp b/tools/qdoc3/main.cpp index ac1c5de..68b5370 100644 --- a/tools/qdoc3/main.cpp +++ b/tools/qdoc3/main.cpp @@ -95,21 +95,6 @@ static QStringList defines; static QHash<QString, Tree *> trees; /*! - Find the Tree for language \a lang and return a pointer to it. - If there is no Tree for language \a lang in the Tree table, add - a new one. The Tree table is indexed by \a lang strings. - */ -static Tree* treeForLanguage(const QString &lang) -{ - Tree* tree = trees.value(lang); - if (tree == 0) { - tree = new Tree; - trees.insert( lang, tree ); - } - return tree; -} - -/*! Print the help message to \c stdout. */ static void printHelp() |