summaryrefslogtreecommitdiffstats
path: root/tools/qdoc3
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@nokia.com>2010-03-29 12:29:09 (GMT)
committerThiago Macieira <thiago.macieira@nokia.com>2010-03-29 13:24:20 (GMT)
commit1a6d4970793f0696bf54a85346a12e83b6d03013 (patch)
tree7e753fb4add27240ae4533571ed397e4fe53b7c1 /tools/qdoc3
parentcc5ae1831e54702f7bb8477ab3b14ab9832c064c (diff)
downloadQt-1a6d4970793f0696bf54a85346a12e83b6d03013.zip
Qt-1a6d4970793f0696bf54a85346a12e83b6d03013.tar.gz
Qt-1a6d4970793f0696bf54a85346a12e83b6d03013.tar.bz2
Fix compilation with Sun CC:
"node.cpp", line 1337: Error: There is extra text on this line. Reviewed-by: Trust Me
Diffstat (limited to 'tools/qdoc3')
-rw-r--r--tools/qdoc3/node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qdoc3/node.cpp b/tools/qdoc3/node.cpp
index bd37443..ef75f6e 100644
--- a/tools/qdoc3/node.cpp
+++ b/tools/qdoc3/node.cpp
@@ -1334,7 +1334,7 @@ QString QmlClassNode::fileBase() const
void QmlClassNode::addInheritedBy(const QString& base, Node* sub)
{
inheritedBy.insert(base,sub);
-#ifdef DEBUG_MULTIPLE-QDOCCONF_FILES
+#ifdef DEBUG_MULTIPLE_QDOCCONF_FILES
qDebug() << "QmlClassNode::addInheritedBy(): insert" << base << sub->name() << inheritedBy.size();
#endif
}