summaryrefslogtreecommitdiffstats
path: root/src/tools/qdoc/node.cpp
diff options
context:
space:
mode:
authorMartin Smith <martin.smith@digia.com>2013-10-02 12:51:45 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-04 09:40:43 +0200
commitc025d49119a58cf25eed64780b612f9c0629cde5 (patch)
treeacf6d2e14d59115dc0ce865d271e5bbba43178af /src/tools/qdoc/node.cpp
parentc97e369e70c9b17b3ac00f43ccdc191df2183da1 (diff)
qdoc: Eliminate uses of qmlModuleIdentifier()
The QML module identifier is no longer useful. The function to generate it is retained for now. Task-number: QTBUG-32173 Change-Id: Ic811ed432f2059c0370e9e0d86b2e334b5c82a3c Reviewed-by: Martin Smith <martin.smith@digia.com>
Diffstat (limited to 'src/tools/qdoc/node.cpp')
-rw-r--r--src/tools/qdoc/node.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/tools/qdoc/node.cpp b/src/tools/qdoc/node.cpp
index 66e0455074..e854f101f6 100644
--- a/src/tools/qdoc/node.cpp
+++ b/src/tools/qdoc/node.cpp
@@ -130,8 +130,8 @@ QString Node::fullName(const Node* relative) const
if (type() == Node::Document) {
const DocNode* dn = static_cast<const DocNode*>(this);
// Only print modulename::type on collision pages.
- if (!dn->qmlModuleIdentifier().isEmpty() && relative != 0 && relative->isCollisionNode())
- return dn->qmlModuleIdentifier() + "::" + dn->title();
+ if (!dn->qmlModuleName().isEmpty() && relative != 0 && relative->isCollisionNode())
+ return dn->qmlModuleName() + "::" + dn->title();
return dn->title();
}
else if (type() == Node::Class) {
@@ -2204,7 +2204,7 @@ QString QmlClassNode::qmlFullBaseName() const
{
QString result;
if (baseNode_) {
- result = baseNode_->qmlModuleIdentifier() + "::" + baseNode_->name();
+ result = baseNode_->qmlModuleName() + "::" + baseNode_->name();
}
return result;
}
@@ -2356,13 +2356,13 @@ bool QmlPropertyNode::isWritable(QDocDatabase* qdb)
location().warning(tr("No Q_PROPERTY for QML property %1::%2::%3 "
"in C++ class documented as QML type: "
"(property not found in the C++ class or its base classes)")
- .arg(qmlModuleIdentifier()).arg(qmlTypeName()).arg(name()));
+ .arg(qmlModuleName()).arg(qmlTypeName()).arg(name()));
}
else
location().warning(tr("No Q_PROPERTY for QML property %1::%2::%3 "
"in C++ class documented as QML type: "
"(C++ class not specified or not found).")
- .arg(qmlModuleIdentifier()).arg(qmlTypeName()).arg(name()));
+ .arg(qmlModuleName()).arg(qmlTypeName()).arg(name()));
}
}
return true;
@@ -2505,18 +2505,18 @@ InnerNode* NameCollisionNode::findAny(Node::Type t, Node::SubType st)
/*!
This node is a name collision node. Find a child of this node
- such that the child's QML module identifier matches origin's
- QML module identifier. Return the matching node, or return this
- node if there is no matching node.
+ such that the child's QML module name matches origin's QML module
+ Name. Return the matching node, or return this node if there is
+ no matching node.
*/
-const Node* NameCollisionNode::applyModuleIdentifier(const Node* origin) const
+const Node* NameCollisionNode::applyModuleName(const Node* origin) const
{
- if (origin && !origin->qmlModuleIdentifier().isEmpty()) {
+ if (origin && !origin->qmlModuleName().isEmpty()) {
const NodeList& cn = childNodes();
NodeList::ConstIterator i = cn.constBegin();
while (i != cn.constEnd()) {
if ((*i)->type() == Node::Document && (*i)->subType() == Node::QmlClass) {
- if (origin->qmlModuleIdentifier() == (*i)->qmlModuleIdentifier())
+ if (origin->qmlModuleName() == (*i)->qmlModuleName())
return (*i);
}
++i;