aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlxmlhttprequest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/qml/qqmlxmlhttprequest.cpp')
-rw-r--r--src/qml/qml/qqmlxmlhttprequest.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/qml/qml/qqmlxmlhttprequest.cpp b/src/qml/qml/qqmlxmlhttprequest.cpp
index fe2d7da694..f94946820f 100644
--- a/src/qml/qml/qqmlxmlhttprequest.cpp
+++ b/src/qml/qml/qqmlxmlhttprequest.cpp
@@ -179,6 +179,7 @@ struct NamedNodeMap : Object {
delete listPtr;
if (d)
d->release();
+ Object::destroy();
}
QList<NodeImpl *> &list() {
if (listPtr == nullptr)
@@ -195,6 +196,7 @@ struct NodeList : Object {
void destroy() {
if (d)
d->release();
+ Object::destroy();
}
NodeImpl *d;
};
@@ -208,6 +210,7 @@ struct Node : Object {
void destroy() {
if (d)
d->release();
+ Object::destroy();
}
NodeImpl *d;
};
@@ -1605,6 +1608,7 @@ struct QQmlXMLHttpRequestWrapper : Object {
void destroy() {
delete request;
+ Object::destroy();
}
QQmlXMLHttpRequest *request;
};