aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlxmlhttprequest.cpp
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@digia.com>2014-07-17 15:56:30 +0200
committerSimon Hausmann <simon.hausmann@digia.com>2014-07-22 13:49:21 +0200
commitb3fab495f514a3bd2d335276a022c0f3678f1cc4 (patch)
tree3b6f6e17f4addd94bd95bf3fe3945c5398a05446 /src/qml/qml/qqmlxmlhttprequest.cpp
parent659e06f3a0c5a72154306c16abfeb177b2572e43 (diff)
Cleanup: Get rid of __data members
These are not needed anymore Change-Id: Ib834aa294e84ca9fbdd5b6850d5bc172e8b54ba1 Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/qml/qml/qqmlxmlhttprequest.cpp')
-rw-r--r--src/qml/qml/qqmlxmlhttprequest.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/qml/qml/qqmlxmlhttprequest.cpp b/src/qml/qml/qqmlxmlhttprequest.cpp
index 0ba4eabbca..e7bea80a18 100644
--- a/src/qml/qml/qqmlxmlhttprequest.cpp
+++ b/src/qml/qml/qqmlxmlhttprequest.cpp
@@ -204,11 +204,6 @@ public:
QList<NodeImpl *> list; // Only used in NamedNodeMap
NodeImpl *d;
};
- struct {
- QList<NodeImpl *> list; // Only used in NamedNodeMap
- NodeImpl *d;
- } __data;
-
V4_OBJECT(Object)
// C++ API
@@ -243,10 +238,6 @@ public:
}
NodeImpl *d;
};
- struct {
- NodeImpl *d;
- } __data;
-
V4_OBJECT(Object)
// JS API
@@ -336,9 +327,6 @@ struct Node : public Object
}
NodeImpl *d;
};
- struct {
- NodeImpl *d;
- } __data;
V4_OBJECT(Object)
@@ -1625,10 +1613,6 @@ struct QQmlXMLHttpRequestWrapper : public Object
}
QQmlXMLHttpRequest *request;
};
- struct {
- QQmlXMLHttpRequest *request;
- } __data;
-
V4_OBJECT(Object)
static void destroy(Managed *that) {
@@ -1660,10 +1644,6 @@ struct QQmlXMLHttpRequestCtor : public FunctionObject
}
Object *proto;
};
- struct {
- Object *proto;
- } __data;
-
V4_OBJECT(FunctionObject)
static void markObjects(Managed *that, ExecutionEngine *e) {
QQmlXMLHttpRequestCtor *c = that->as<QQmlXMLHttpRequestCtor>();