diff options
author | hjk <qtc-committer@nokia.com> | 2010-04-23 12:12:22 +0200 |
---|---|---|
committer | hjk <qtc-committer@nokia.com> | 2010-04-27 15:33:17 +0200 |
commit | 400eecf4efc8b46c231b5385dbd6830f9d2e39f7 (patch) | |
tree | 47c18579f4d9c69c4789d9e8e96404da68724ed3 /src/plugins/debugger/script/scriptengine.cpp | |
parent | 010b73615c8f49971ff166d201215327824e6d3d (diff) | |
download | qt-creator-400eecf4efc8b46c231b5385dbd6830f9d2e39f7.tar.gz |
debugger: some work on python
Diffstat (limited to 'src/plugins/debugger/script/scriptengine.cpp')
-rw-r--r-- | src/plugins/debugger/script/scriptengine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/script/scriptengine.cpp b/src/plugins/debugger/script/scriptengine.cpp index d4588f6520..8b0566a999 100644 --- a/src/plugins/debugger/script/scriptengine.cpp +++ b/src/plugins/debugger/script/scriptengine.cpp @@ -550,7 +550,7 @@ void ScriptEngine::setToolTipExpression(const QPoint &mousePos, void ScriptEngine::assignValueInDebugger(const QString &expression, const QString &value) { - XSDEBUG("ASSIGNING: " << (expression + QLatin1Char('=') + value)); + SDEBUG("ASSIGNING: " << (expression + QLatin1Char('=') + value)); m_scriptEngine->evaluate(expression + QLatin1Char('=') + value); updateLocals(); } |