summaryrefslogtreecommitdiffstats
path: root/tools/qdoc3
diff options
context:
space:
mode:
authorDavid Boddie <david.boddie@nokia.com>2010-12-01 10:57:35 (GMT)
committerDavid Boddie <david.boddie@nokia.com>2010-12-01 10:57:35 (GMT)
commiteae5f69a23d46d237ee2021319d093c580dff679 (patch)
tree6cb158e8930ed2558bf31fab54d826d612d5ffb0 /tools/qdoc3
parent39fde39430870467c41fbddd79b2b2d8788e45e2 (diff)
downloadQt-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.cpp15
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()