QmlDesigner: Fix spelling

Change-Id: Ifc17bab623b8e227b7511016f3f31db4edb77fe4
Reviewed-by: Tim Jenssen <tim.jenssen@digia.com>
This commit is contained in:
Marco Bubke
2014-06-24 18:48:48 +02:00
parent 1526dd0aa6
commit 6c99a48aaf
2 changed files with 4 additions and 4 deletions

View File

@@ -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;

View File

@@ -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();
} }