aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/designer/qquickdesignersupport.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/quick/designer/qquickdesignersupport.cpp')
-rw-r--r--src/quick/designer/qquickdesignersupport.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/quick/designer/qquickdesignersupport.cpp b/src/quick/designer/qquickdesignersupport.cpp
index 70b568800d..48b6b9733b 100644
--- a/src/quick/designer/qquickdesignersupport.cpp
+++ b/src/quick/designer/qquickdesignersupport.cpp
@@ -390,13 +390,13 @@ void QQuickDesignerSupport::emitComponentCompleteSignalForAttachedProperty(QObje
QQmlData *data = QQmlData::get(object);
if (data && data->context) {
- QQmlComponentAttached *componentAttached = data->context->componentAttached;
+ QQmlComponentAttached *componentAttached = data->context->componentAttacheds();
while (componentAttached) {
if (componentAttached->parent())
if (componentAttached->parent() == object)
emit componentAttached->completed();
- componentAttached = componentAttached->next;
+ componentAttached = componentAttached->next();
}
}
}
@@ -429,7 +429,7 @@ int QQuickDesignerSupport::borderWidth(QQuickItem *item)
void QQuickDesignerSupport::refreshExpressions(QQmlContext *context)
{
- QQmlContextPrivate::get(context)->data->refreshExpressions();
+ QQmlContextData::get(context)->refreshExpressions();
}
void QQuickDesignerSupport::setRootItem(QQuickView *view, QQuickItem *item)