diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2010-03-29 12:29:09 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2010-03-29 13:24:20 (GMT) |
commit | 1a6d4970793f0696bf54a85346a12e83b6d03013 (patch) | |
tree | 7e753fb4add27240ae4533571ed397e4fe53b7c1 /tools/qdoc3/node.cpp | |
parent | cc5ae1831e54702f7bb8477ab3b14ab9832c064c (diff) | |
download | Qt-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/node.cpp')
-rw-r--r-- | tools/qdoc3/node.cpp | 2 |
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 } |