diff options
author | hjk <qtc-committer@nokia.com> | 2009-09-28 10:05:54 (GMT) |
---|---|---|
committer | hjk <qtc-committer@nokia.com> | 2009-09-28 10:07:41 (GMT) |
commit | 857a77fe62b9ad3165cf67a5c2e869e5e7dd9e36 (patch) | |
tree | 4ff4f4b40a0a20f57d187b9054f95756aa4717a4 /src/3rdparty/javascriptcore/JavaScriptCore/jit | |
parent | 994daec967ea0e3db2fa6093efe1274f9a79d2ff (diff) | |
download | Qt-857a77fe62b9ad3165cf67a5c2e869e5e7dd9e36.zip Qt-857a77fe62b9ad3165cf67a5c2e869e5e7dd9e36.tar.gz Qt-857a77fe62b9ad3165cf67a5c2e869e5e7dd9e36.tar.bz2 |
compile fix with namespaced qt
Reviewed-by: Simon Hausmann
Diffstat (limited to 'src/3rdparty/javascriptcore/JavaScriptCore/jit')
-rw-r--r-- | src/3rdparty/javascriptcore/JavaScriptCore/jit/JITStubs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/3rdparty/javascriptcore/JavaScriptCore/jit/JITStubs.cpp b/src/3rdparty/javascriptcore/JavaScriptCore/jit/JITStubs.cpp index a110dcd..0b147df 100644 --- a/src/3rdparty/javascriptcore/JavaScriptCore/jit/JITStubs.cpp +++ b/src/3rdparty/javascriptcore/JavaScriptCore/jit/JITStubs.cpp @@ -1777,7 +1777,7 @@ DEFINE_STUB_FUNCTION(JSObject*, op_construct_JSConstruct) else structure = constructor->scope().node()->globalObject()->emptyObjectStructure(); #ifdef QT_BUILD_SCRIPT_LIB - return new (stackFrame.globalData) QScriptObject(structure); + return new (stackFrame.globalData) QT_PREPEND_NAMESPACE(QScriptObject)(structure); #else return new (stackFrame.globalData) JSObject(structure); #endif @@ -3108,4 +3108,4 @@ DEFINE_STUB_FUNCTION(EncodedJSValue, vm_throw) } // namespace JSC -#endif // ENABLE(JIT) + #endif // ENABLE(JIT) |