diff options
author | Martin Smith <msmith@trolltech.com> | 2010-02-03 13:45:20 (GMT) |
---|---|---|
committer | Martin Smith <msmith@trolltech.com> | 2010-02-03 13:45:20 (GMT) |
commit | 63f66fb0008f93638de782b03f53e9777a941ab7 (patch) | |
tree | 1e52796ba03461346a8ec38785fe881f41fd7953 /tools/qdoc3/tree.cpp | |
parent | d50c672b037005dfd838bf7658ab7f2888697e85 (diff) | |
download | Qt-63f66fb0008f93638de782b03f53e9777a941ab7.zip Qt-63f66fb0008f93638de782b03f53e9777a941ab7.tar.gz Qt-63f66fb0008f93638de782b03f53e9777a941ab7.tar.bz2 |
qdoc3: Added support for the \qmlbasictype command.
Diffstat (limited to 'tools/qdoc3/tree.cpp')
-rw-r--r-- | tools/qdoc3/tree.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/qdoc3/tree.cpp b/tools/qdoc3/tree.cpp index d46da95..6c2502d 100644 --- a/tools/qdoc3/tree.cpp +++ b/tools/qdoc3/tree.cpp @@ -1914,7 +1914,8 @@ QString Tree::fullDocumentLocation(const Node *node) const } else if (node->type() == Node::Fake) { #ifdef QDOC_QML - if (node->subType() == Node::QmlClass) + if ((node->subType() == Node::QmlClass) || + (node->subType() == Node::QmlBasicType)) return "qml-" + node->fileBase() + ".html"; else #endif |