summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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()