diff options
author | David Boddie <dboddie@trolltech.com> | 2009-05-19 14:30:05 (GMT) |
---|---|---|
committer | David Boddie <dboddie@trolltech.com> | 2009-05-19 14:30:05 (GMT) |
commit | 13f703741dee67adc7d92e4bcf525431334c9a60 (patch) | |
tree | b1d82e77ee04ee50b24298ae58f46c0980ec0e5d /src/scripttools/debugging/qscriptdebuggerbackend.cpp | |
parent | a29ede629a18f9e107bae5e9ca03059a66f25de5 (diff) | |
parent | bff689f3c5b127add96c50e4b2fdb2eadbf498a9 (diff) | |
download | Qt-13f703741dee67adc7d92e4bcf525431334c9a60.zip Qt-13f703741dee67adc7d92e4bcf525431334c9a60.tar.gz Qt-13f703741dee67adc7d92e4bcf525431334c9a60.tar.bz2 |
Merge branch '4.5' of git@scm.dev.nokia.troll.no:qt/qt into 4.5
Diffstat (limited to 'src/scripttools/debugging/qscriptdebuggerbackend.cpp')
-rw-r--r-- | src/scripttools/debugging/qscriptdebuggerbackend.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/scripttools/debugging/qscriptdebuggerbackend.cpp b/src/scripttools/debugging/qscriptdebuggerbackend.cpp index 24a3847..3c29130 100644 --- a/src/scripttools/debugging/qscriptdebuggerbackend.cpp +++ b/src/scripttools/debugging/qscriptdebuggerbackend.cpp @@ -615,13 +615,11 @@ void QScriptDebuggerBackend::doPendingEvaluate(bool postEvent) // push a new context and initialize its scope chain etc. { QScriptContext *evalContext = engine()->pushContext(); -#if QT_VERSION >= 0x040500 QScriptValueList scopeChain = ctx->scopeChain(); if (scopeChain.isEmpty()) scopeChain.append(engine()->globalObject()); while (!scopeChain.isEmpty()) evalContext->pushScope(scopeChain.takeLast()); -#endif evalContext->setActivationObject(ctx->activationObject()); evalContext->setThisObject(ctx->thisObject()); } |