forked from qt-creator/qt-creator
QmlDesigner: Fix spelling
Change-Id: Ifc17bab623b8e227b7511016f3f31db4edb77fe4 Reviewed-by: Tim Jenssen <tim.jenssen@digia.com>
This commit is contained in:
@@ -141,8 +141,8 @@ public:
|
|||||||
bool hasProperty(const PropertyName &name) const;
|
bool hasProperty(const PropertyName &name) const;
|
||||||
bool hasVariantProperty(const PropertyName &name) const;
|
bool hasVariantProperty(const PropertyName &name) const;
|
||||||
bool hasBindingProperty(const PropertyName &name) const;
|
bool hasBindingProperty(const PropertyName &name) const;
|
||||||
bool hasNodeAbstracProperty(const PropertyName &name) const;
|
bool hasNodeAbstractProperty(const PropertyName &name) const;
|
||||||
bool hasDefaultNodeAbstracProperty() const;
|
bool hasDefaultNodeAbstractProperty() const;
|
||||||
bool hasDefaultNodeListProperty() const;
|
bool hasDefaultNodeListProperty() const;
|
||||||
bool hasDefaultNodeProperty() const;
|
bool hasDefaultNodeProperty() const;
|
||||||
bool hasNodeProperty(const PropertyName &name) const;
|
bool hasNodeProperty(const PropertyName &name) const;
|
||||||
|
@@ -839,12 +839,12 @@ bool ModelNode::hasBindingProperty(const PropertyName &name) const
|
|||||||
return hasProperty(name) && internalNode()->property(name)->isBindingProperty();
|
return hasProperty(name) && internalNode()->property(name)->isBindingProperty();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ModelNode::hasNodeAbstracProperty(const PropertyName &name) const
|
bool ModelNode::hasNodeAbstractProperty(const PropertyName &name) const
|
||||||
{
|
{
|
||||||
return hasProperty(name) && internalNode()->property(name)->isNodeAbstractProperty();
|
return hasProperty(name) && internalNode()->property(name)->isNodeAbstractProperty();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ModelNode::hasDefaultNodeAbstracProperty() const
|
bool ModelNode::hasDefaultNodeAbstractProperty() const
|
||||||
{
|
{
|
||||||
return hasProperty(metaInfo().defaultPropertyName()) && internalNode()->property(metaInfo().defaultPropertyName())->isNodeAbstractProperty();
|
return hasProperty(metaInfo().defaultPropertyName()) && internalNode()->property(metaInfo().defaultPropertyName())->isNodeAbstractProperty();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user