From 16f92ad85cf665d863ded5eeaaa7fc3f90820b3f Mon Sep 17 00:00:00 2001 From: Lars Knoll Date: Thu, 12 Sep 2013 11:13:03 +0200 Subject: Convert builtin methods to return a ReturnedValue Change-Id: I6b75adbf53a5be0deab023d2eed98ce2a7915551 Reviewed-by: Simon Hausmann --- tests/auto/qml/qv4debugger/tst_qv4debugger.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/auto/qml/qv4debugger') diff --git a/tests/auto/qml/qv4debugger/tst_qv4debugger.cpp b/tests/auto/qml/qv4debugger/tst_qv4debugger.cpp index 9da67c3f43..bce236f9e2 100644 --- a/tests/auto/qml/qv4debugger/tst_qv4debugger.cpp +++ b/tests/auto/qml/qv4debugger/tst_qv4debugger.cpp @@ -77,7 +77,7 @@ public: QV4::ExecutionEngine *v4Engine() { return QV8Engine::getV4(this); } - typedef QV4::Value (*InjectedFunction)(QV4::SimpleCallContext*); + typedef QV4::ReturnedValue (*InjectedFunction)(QV4::SimpleCallContext*); Q_INVOKABLE void injectFunction(const QString &functionName, TestEngine::InjectedFunction injectedFunction) { @@ -261,10 +261,10 @@ void tst_qv4debugger::addBreakPointWhilePaused() QCOMPARE(state.lineNumber, 2); } -static QV4::Value someCall(QV4::SimpleCallContext *ctx) +static QV4::ReturnedValue someCall(QV4::SimpleCallContext *ctx) { ctx->engine->debugger->removeBreakPoint("removeBreakPointForNextInstruction", 2); - return QV4::Value::undefinedValue(); + return QV4::Encode::undefined(); } void tst_qv4debugger::removeBreakPointForNextInstruction() -- cgit v1.2.3