aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlvmemetaobject.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-10-17 08:56:51 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-19 14:59:11 +0200
commit9fd4591a61df467362fa2f17cc2d506efd6bece3 (patch)
treefa3c31cffcd67943ae26823ab9d2b8370815980f /src/qml/qml/qqmlvmemetaobject.cpp
parentf0eaaef4aeb6fa8951cca1e1e90def3411896e9f (diff)
Remove internal method from public API
QQmlError is public API and shouldn't expose an internal method. Change-Id: I7caf06af9340fefec5c96103395fe74acbf19497 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/qml/qqmlvmemetaobject.cpp')
-rw-r--r--src/qml/qml/qqmlvmemetaobject.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/qml/qqmlvmemetaobject.cpp b/src/qml/qml/qqmlvmemetaobject.cpp
index 915314e322..5752033744 100644
--- a/src/qml/qml/qqmlvmemetaobject.cpp
+++ b/src/qml/qml/qqmlvmemetaobject.cpp
@@ -960,7 +960,7 @@ int QQmlVMEMetaObject::metaCall(QMetaObject::Call c, int _id, void **a)
result = function->call(callData);
if (a[0]) *(QVariant *)a[0] = ep->v8engine()->toVariant(result, 0);
} catch (...) {
- QQmlError error = QQmlError::catchJavaScriptException(ctx);
+ QQmlError error = QV4::ExecutionEngine::convertJavaScriptException(ctx);
if (error.isValid())
ep->warning(error);
if (a[0]) *(QVariant *)a[0] = QVariant();