summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-03-07 12:25:59 +0100
committerSimon Hausmann <simon.hausmann@digia.com>2013-03-07 12:30:38 +0100
commit1196824e7a82ec816e5aff2c42ec618333dab392 (patch)
tree083b0f874a58463c9d236abe75f64583b0e3ecca /tools
parentd9f1831917382d90e5874cd0da672d21a0dcabcf (diff)
First part of moving get/put etc. into the Managed vtbl.
Change-Id: I6fe14b02205901dbffa25c6c1b4883fb99586417 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/v4/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/v4/main.cpp b/tools/v4/main.cpp
index 7238355c..eb46b719 100644
--- a/tools/v4/main.cpp
+++ b/tools/v4/main.cpp
@@ -135,7 +135,7 @@ static void showException(QQmlJS::VM::ExecutionContext *ctx, const QQmlJS::VM::V
std::cerr << qPrintable(msg->buildFullMessage(ctx)->toQString()) << std::endl;
}
} else {
- std::cerr << "Uncaught exception: " << qPrintable(e->__get__(ctx, ctx->engine->newString(QStringLiteral("message")), 0).toString(ctx)->toQString()) << std::endl;
+ std::cerr << "Uncaught exception: " << qPrintable(e->get(ctx, ctx->engine->newString(QStringLiteral("message")), 0).toString(ctx)->toQString()) << std::endl;
}
}