aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlobjectcreator.cpp
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@digia.com>2014-03-17 17:11:20 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-03-17 20:41:34 +0100
commitecd4a9ba23c0c538e73dc4f9e75c4d5361ba4c0e (patch)
tree4dce15579db4ced8b1e390c8c24af66850227fab /src/qml/qml/qqmlobjectcreator.cpp
parent05a12c9ebe558303fb1eb92a272e66fa1313b854 (diff)
Namespace cleanup
Move the QML IR types into the QmlIR namespace and clean them up. Change-Id: I2125449e5a519034e23670651efa620f405730b4 Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/qml/qml/qqmlobjectcreator.cpp')
-rw-r--r--src/qml/qml/qqmlobjectcreator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/qml/qqmlobjectcreator.cpp b/src/qml/qml/qqmlobjectcreator.cpp
index 0825b8ec53..847d325763 100644
--- a/src/qml/qml/qqmlobjectcreator.cpp
+++ b/src/qml/qml/qqmlobjectcreator.cpp
@@ -703,7 +703,7 @@ void QQmlObjectCreator::setupBindings(const QBitArray &bindingsToSkip)
if (!name.isEmpty()) {
if (binding->flags & QV4::CompiledData::Binding::IsSignalHandlerExpression
|| binding->flags & QV4::CompiledData::Binding::IsSignalHandlerObject)
- property = PropertyResolver(_propertyCache).signal(name, /*notInRevision*/0, _qobject, context);
+ property = QmlIR::PropertyResolver(_propertyCache).signal(name, /*notInRevision*/0, _qobject, context);
else
property = _propertyCache->property(name, _qobject, context);
} else