aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlxmlhttprequest.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2014-04-30 20:50:42 +0200
committerSimon Hausmann <simon.hausmann@digia.com>2014-07-22 13:49:10 +0200
commitd44cac4028df512b37b161e9f3fc9f7ba1c504bc (patch)
tree2ac4f9c95095863928faf450d9e48d1b3c7c7d87 /src/qml/qml/qqmlxmlhttprequest.cpp
parent38b58be83a5cbc65f9c3d7e3d14788e7d6837d7d (diff)
Rename V4_OBJECT_NEW back to V4_OBJECT
The _NEW variant was there only temporarily to aid converting to the new data layout. Change-Id: I1d126ee0999c8f0a49f5a08c2e8c090497dd6dd5 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/qml/qqmlxmlhttprequest.cpp')
-rw-r--r--src/qml/qml/qqmlxmlhttprequest.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/qml/qml/qqmlxmlhttprequest.cpp b/src/qml/qml/qqmlxmlhttprequest.cpp
index 0cf367a57d..2818a178d2 100644
--- a/src/qml/qml/qqmlxmlhttprequest.cpp
+++ b/src/qml/qml/qqmlxmlhttprequest.cpp
@@ -195,7 +195,7 @@ public:
NodeImpl *d;
} __data;
- V4_OBJECT_NEW
+ V4_OBJECT
NamedNodeMap(ExecutionEngine *engine, NodeImpl *data, const QList<NodeImpl *> &list)
: Object(engine)
@@ -234,7 +234,7 @@ class NodeList : public Object
NodeImpl *d;
} __data;
- V4_OBJECT_NEW
+ V4_OBJECT
public:
NodeList(ExecutionEngine *engine, NodeImpl *data)
: Object(engine)
@@ -266,7 +266,7 @@ DEFINE_OBJECT_VTABLE(NodeList);
class NodePrototype : public Object
{
- V4_OBJECT_NEW
+ V4_OBJECT
public:
NodePrototype(ExecutionEngine *engine)
: Object(engine)
@@ -325,7 +325,7 @@ class Node : public Object
struct {
NodeImpl *d;
} __data;
- V4_OBJECT_NEW
+ V4_OBJECT
Node(ExecutionEngine *engine, NodeImpl *data)
: Object(engine)
@@ -1632,7 +1632,7 @@ struct QQmlXMLHttpRequestWrapper : public Object
QQmlXMLHttpRequest *request;
} __data;
- V4_OBJECT_NEW
+ V4_OBJECT
QQmlXMLHttpRequestWrapper(ExecutionEngine *engine, QQmlXMLHttpRequest *request)
: Object(engine)
{
@@ -1659,7 +1659,7 @@ struct QQmlXMLHttpRequestCtor : public FunctionObject
Object *proto;
} __data;
- V4_OBJECT_NEW
+ V4_OBJECT
QQmlXMLHttpRequestCtor(ExecutionEngine *engine)
: FunctionObject(engine->rootContext, QStringLiteral("XMLHttpRequest"))
{