summaryrefslogtreecommitdiffstats
path: root/tools/qdoc3/node.h
diff options
context:
space:
mode:
authorMartin Smith <martin.smith@nokia.com>2010-11-01 11:04:32 (GMT)
committerMartin Smith <martin.smith@nokia.com>2010-11-01 11:04:32 (GMT)
commitd5d44eb800f1c0be15d49521cf991a1c9466cb78 (patch)
treeeef2d6c7aecf532afb8e1050659efcce8006f1f1 /tools/qdoc3/node.h
parent5fdbfcaa0ebda0b2062d962734546309c6d2247c (diff)
downloadQt-d5d44eb800f1c0be15d49521cf991a1c9466cb78.zip
Qt-d5d44eb800f1c0be15d49521cf991a1c9466cb78.tar.gz
Qt-d5d44eb800f1c0be15d49521cf991a1c9466cb78.tar.bz2
doc: Corrections to linking errors in the docs.
Diffstat (limited to 'tools/qdoc3/node.h')
-rw-r--r--tools/qdoc3/node.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/qdoc3/node.h b/tools/qdoc3/node.h
index 0b493ee..69f3ba5 100644
--- a/tools/qdoc3/node.h
+++ b/tools/qdoc3/node.h
@@ -164,6 +164,7 @@ class Node
virtual bool isReimp() const { return false; }
virtual bool isFunction() const { return false; }
virtual bool isQmlNode() const { return false; }
+ virtual bool isInternal() const { return false; }
Type type() const { return typ; }
virtual SubType subType() const { return NoSubType; }
InnerNode* parent() const { return par; }
@@ -636,6 +637,7 @@ class FunctionNode : public LeafNode
virtual bool isQmlNode() const {
return ((type() == QmlSignal) || (type() == QmlMethod));
}
+ virtual bool isInternal() const;
void debug() const;