diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2010-04-09 17:02:00 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2010-04-09 17:02:00 (GMT) |
commit | 501a80b1dc9df816a3de25bd1af5b55cdc0fcbce (patch) | |
tree | 3015d651d56e78e20862a20353a6a8261b718563 /src/script/api/qscriptvalue.cpp | |
parent | 7beb00f80967380b4d94af3f19af3f594ea40d1b (diff) | |
parent | e09c61235dab9de1111372ee05eb51004eda5569 (diff) | |
download | Qt-501a80b1dc9df816a3de25bd1af5b55cdc0fcbce.zip Qt-501a80b1dc9df816a3de25bd1af5b55cdc0fcbce.tar.gz Qt-501a80b1dc9df816a3de25bd1af5b55cdc0fcbce.tar.bz2 |
Merge remote branch 'origin/4.6' into qt-4.7-from-4.6
Diffstat (limited to 'src/script/api/qscriptvalue.cpp')
-rw-r--r-- | src/script/api/qscriptvalue.cpp | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/script/api/qscriptvalue.cpp b/src/script/api/qscriptvalue.cpp index 7469f9a..1310c8c 100644 --- a/src/script/api/qscriptvalue.cpp +++ b/src/script/api/qscriptvalue.cpp @@ -538,19 +538,28 @@ void QScriptValue::setPrototype(const QScriptValue &prototype) "a different engine"); return; } + JSC::JSObject *thisObject = JSC::asObject(d->jscValue); JSC::JSValue other = d->engine->scriptValueToJSCValue(prototype); // check for cycle JSC::JSValue nextPrototypeValue = other; while (nextPrototypeValue && nextPrototypeValue.isObject()) { JSC::JSObject *nextPrototype = JSC::asObject(nextPrototypeValue); - if (nextPrototype == JSC::asObject(d->jscValue)) { + if (nextPrototype == thisObject) { qWarning("QScriptValue::setPrototype() failed: cyclic prototype value"); return; } nextPrototypeValue = nextPrototype->prototype(); } - JSC::asObject(d->jscValue)->setPrototype(other); + + thisObject->setPrototype(other); + + // Sync the internal Global Object prototype if appropriate. + if (((thisObject == d->engine->originalGlobalObjectProxy) + && !d->engine->customGlobalObject()) + || (thisObject == d->engine->customGlobalObject())) { + d->engine->originalGlobalObject()->setPrototype(other); + } } /*! |