aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4object.cpp
diff options
context:
space:
mode:
authorLars Knoll <[email protected]>2013-08-29 13:06:22 +0200
committerThe Qt Project <[email protected]>2013-09-02 17:27:36 +0200
commit6c69cdb1af58dfb584615aa60d4f69b359b312cc (patch)
tree50a38e57b21b9d8d2e4cf28358ca125bf34f8a4a /src/qml/jsruntime/qv4object.cpp
parent43a58a5686c84bbf6e0c34357dc7e6448f952838 (diff)
Remove unused arvument from Object constructor
Change-Id: I2c26bd8af9b352baed9b84a6b6401633ded4da85 Reviewed-by: Simon Hausmann <[email protected]>
Diffstat (limited to 'src/qml/jsruntime/qv4object.cpp')
-rw-r--r--src/qml/jsruntime/qv4object.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4object.cpp b/src/qml/jsruntime/qv4object.cpp
index de651957f6..f76abdbb01 100644
--- a/src/qml/jsruntime/qv4object.cpp
+++ b/src/qml/jsruntime/qv4object.cpp
@@ -79,7 +79,7 @@ Object::Object(ExecutionEngine *engine)
memset(memberData, 0, sizeof(Property)*memberDataAlloc);
}
-Object::Object(ExecutionEngine *engine, InternalClass *internalClass)
+Object::Object(InternalClass *internalClass)
: Managed(internalClass)
, prototype(0)
, memberDataAlloc(InlinePropertySize), memberData(inlineProperties)