summaryrefslogtreecommitdiffstats
path: root/tools/qdoc3/generator.cpp
diff options
context:
space:
mode:
authorMartin Smith <msmith@trolltech.com>2010-03-17 11:44:01 (GMT)
committerMartin Smith <msmith@trolltech.com>2010-03-17 11:44:01 (GMT)
commitd28a81d51734afd1f3a052f4c4e9fc90aef393e8 (patch)
treec060f7bee9bab9b34ab85526a3f511c8bae4725c /tools/qdoc3/generator.cpp
parenta12b989c6d469a5a4512b7cbb70f716d98eae8e3 (diff)
downloadQt-d28a81d51734afd1f3a052f4c4e9fc90aef393e8.zip
Qt-d28a81d51734afd1f3a052f4c4e9fc90aef393e8.tar.gz
Qt-d28a81d51734afd1f3a052f4c4e9fc90aef393e8.tar.bz2
qdoc3: Fixed some ifdef typos and removed some whitespace.
Diffstat (limited to 'tools/qdoc3/generator.cpp')
-rw-r--r--tools/qdoc3/generator.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/qdoc3/generator.cpp b/tools/qdoc3/generator.cpp
index 0c6497b..62f191b 100644
--- a/tools/qdoc3/generator.cpp
+++ b/tools/qdoc3/generator.cpp
@@ -1194,14 +1194,14 @@ void Generator::appendSortedQmlNames(Text& text,
QMap<QString,Text> classMap;
int index = 0;
-#ifdef DEBUG_MULTIPLE QDOCCONF_FILES
+#ifdef DEBUG_MULTIPLE_QDOCCONF_FILES
qDebug() << "Generator::appendSortedQmlNames():" << base->name() << "is inherited by...";
-#endif
+#endif
for (int i = 0; i < subs.size(); ++i) {
Text t;
-#ifdef DEBUG_MULTIPLE QDOCCONF_FILES
+#ifdef DEBUG_MULTIPLE_QDOCCONF_FILES
qDebug() << " " << subs[i]->name();
-#endif
+#endif
appendFullName(t, subs[i], base, marker);
classMap[t.toString().toLower()] = t;
}