summaryrefslogtreecommitdiffstats
path: root/tools/qdoc3/node.h
diff options
context:
space:
mode:
authorMartin Smith <msmith@trolltech.com>2010-02-19 11:35:50 (GMT)
committerMartin Smith <msmith@trolltech.com>2010-02-19 11:35:50 (GMT)
commit83d7242271cf8196a8133de0406788135e16abbb (patch)
tree7c1c8e88ff871e8d5df2c4aef5c696e2fe938215 /tools/qdoc3/node.h
parent5c247a8afb51ff58c4f0ef7f26c2e22d4700cd39 (diff)
downloadQt-83d7242271cf8196a8133de0406788135e16abbb.zip
Qt-83d7242271cf8196a8133de0406788135e16abbb.tar.gz
Qt-83d7242271cf8196a8133de0406788135e16abbb.tar.bz2
qdoc: Finished "Inherited by" list for QML elements.
The listed elements are now links. Task: QTBUG-8153
Diffstat (limited to 'tools/qdoc3/node.h')
-rw-r--r--tools/qdoc3/node.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/qdoc3/node.h b/tools/qdoc3/node.h
index de26025..3798e4e 100644
--- a/tools/qdoc3/node.h
+++ b/tools/qdoc3/node.h
@@ -383,12 +383,12 @@ class QmlClassNode : public FakeNode
const ClassNode* classNode() const { return cnode; }
virtual QString fileBase() const;
- static void addInheritedBy(const QString& base, const QString& sub);
- static void subclasses(const QString& base, QStringList& subs);
+ static void addInheritedBy(const QString& base, Node* sub);
+ static void subclasses(const QString& base, NodeList& subs);
public:
static bool qmlOnly;
- static QMultiMap<QString,QString> inheritedBy;
+ static QMultiMap<QString,Node*> inheritedBy;
private:
const ClassNode* cnode;