aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4jscall_p.h
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2023-05-16 09:27:14 +0200
committerUlf Hermann <ulf.hermann@qt.io>2023-05-23 13:53:22 +0200
commitba64b7a70eedf6a2023ef86eda542cad6f4b21be (patch)
tree2a7663132b2717a2c361c3b0c03b09fe85fcc884 /src/qml/jsruntime/qv4jscall_p.h
parent1559e6707e276b521b52876c539fcfe5a1e85a4e (diff)
Undeprecate AOTCompiledFunction
We're going to call the JavaScript-typed functions a different name. Change-Id: If92c3fb1b16b1b0bd7d009e7dd712ae6405e1232 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4jscall_p.h')
-rw-r--r--src/qml/jsruntime/qv4jscall_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/jsruntime/qv4jscall_p.h b/src/qml/jsruntime/qv4jscall_p.h
index cb6e708eee..2f6af8dd8b 100644
--- a/src/qml/jsruntime/qv4jscall_p.h
+++ b/src/qml/jsruntime/qv4jscall_p.h
@@ -98,7 +98,7 @@ void populateJSCallArguments(ExecutionEngine *v4, JSCallArguments &jsCall, int a
template<typename Callable>
ReturnedValue convertAndCall(
- ExecutionEngine *engine, const QQmlPrivate::TypedFunction *aotFunction,
+ ExecutionEngine *engine, const QQmlPrivate::AOTCompiledFunction *aotFunction,
const Value *thisObject, const Value *argv, int argc, Callable call)
{
const qsizetype numFunctionArguments = aotFunction->argumentTypes.size();
@@ -191,7 +191,7 @@ bool convertAndCall(ExecutionEngine *engine, QObject *thisObject,
template<typename Callable>
ReturnedValue coerceAndCall(
- ExecutionEngine *engine, const QQmlPrivate::TypedFunction *typedFunction,
+ ExecutionEngine *engine, const QQmlPrivate::AOTCompiledFunction *typedFunction,
const Value *thisObject, const Value *argv, int argc, Callable call)
{
Scope scope(engine);