summaryrefslogtreecommitdiffstats
path: root/src/3rdparty
diff options
context:
space:
mode:
authorKent Hansen <khansen@trolltech.com>2009-08-05 14:22:15 (GMT)
committerKent Hansen <khansen@trolltech.com>2009-08-05 14:22:15 (GMT)
commita11921c7ae4428cfaa53356dbc0b3415a297e083 (patch)
tree8a1de061c68a3401c4efb5d6d3a0fac11acd6f65 /src/3rdparty
parentccbf97ef1959d42764954c261f6f464515c19180 (diff)
downloadQt-a11921c7ae4428cfaa53356dbc0b3415a297e083.zip
Qt-a11921c7ae4428cfaa53356dbc0b3415a297e083.tar.gz
Qt-a11921c7ae4428cfaa53356dbc0b3415a297e083.tar.bz2
compile
Diffstat (limited to 'src/3rdparty')
-rw-r--r--src/3rdparty/webkit/JavaScriptCore/runtime/ConstructData.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/webkit/JavaScriptCore/runtime/ConstructData.cpp b/src/3rdparty/webkit/JavaScriptCore/runtime/ConstructData.cpp
index 2d98013..c3b2eeb 100644
--- a/src/3rdparty/webkit/JavaScriptCore/runtime/ConstructData.cpp
+++ b/src/3rdparty/webkit/JavaScriptCore/runtime/ConstructData.cpp
@@ -68,7 +68,7 @@ JSObject* construct(ExecState* exec, JSValue callee, ConstructType constructType
interp->registerFile().shrink(oldEnd);
return result;
#else
- return constructData.native.function(exec, asObject(object), args);
+ return constructData.native.function(exec, asObject(callee), args);
#endif
}
ASSERT(constructType == ConstructTypeJS);