aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.pl@gmail.com>2010-10-04 18:56:52 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2010-10-04 18:56:52 -0300
commit67da904f47c450ce5e5c5cd037680d002035549f (patch)
tree694285a2a943240994ce4cdf42754ebbf1bf5451
parent69566068b5d0e3fa9f21f038dc7622cf1d9b3594 (diff)
Use the correct package name at module index.
-rw-r--r--generators/qtdoc/qtdocgenerator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/generators/qtdoc/qtdocgenerator.cpp b/generators/qtdoc/qtdocgenerator.cpp
index b33e878df..f5f5626f3 100644
--- a/generators/qtdoc/qtdocgenerator.cpp
+++ b/generators/qtdoc/qtdocgenerator.cpp
@@ -1349,7 +1349,7 @@ void QtDocGenerator::finishGeneration()
s << ".. module:: " << it.key() << endl << endl;
- QString title = packageName() + " contents";
+ QString title = it.key() + " contents";
s << title << endl;
s << createRepeatedChar(title.length(), '*') << endl << endl;
s << ".. toctree::" << endl;