aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlvmemetaobject.cpp
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@digia.com>2014-03-31 14:37:32 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-04-01 06:17:14 +0200
commit5915a3ec731ed61b88d869b41a4f98121e840219 (patch)
tree66bddcd6030bb11e6d891c59bf1c7c5a22fcc6c5 /src/qml/qml/qqmlvmemetaobject.cpp
parentbdd29d20d7d21d82170ffe2cb74412987210dd0d (diff)
Fix typo
creatScriptFunction -> createScriptFunction Change-Id: Icdb9214b1ae067fa2b8693d50cdac0be9fe6d390 Reviewed-by: Michael Brasser <michael.brasser@live.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 e599c37c0c..1ff95a245d 100644
--- a/src/qml/qml/qqmlvmemetaobject.cpp
+++ b/src/qml/qml/qqmlvmemetaobject.cpp
@@ -615,7 +615,7 @@ QQmlVMEMetaObject::QQmlVMEMetaObject(QObject *obj,
QQmlVMEMetaData::MethodData *data = metaData->methodData() + index;
QV4::Function *runtimeFunction = compilationUnit->runtimeFunctions[data->runtimeFunctionIndex];
- o = QV4::FunctionObject::creatScriptFunction(qmlBindingContext, runtimeFunction);
+ o = QV4::FunctionObject::createScriptFunction(qmlBindingContext, runtimeFunction);
v8methods[index] = o;
}
}