aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmlcompiler/qqmljsstorageinitializer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qmlcompiler/qqmljsstorageinitializer.cpp')
-rw-r--r--src/qmlcompiler/qqmljsstorageinitializer.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/qmlcompiler/qqmljsstorageinitializer.cpp b/src/qmlcompiler/qqmljsstorageinitializer.cpp
index b0f7d1a49f..27169001f2 100644
--- a/src/qmlcompiler/qqmljsstorageinitializer.cpp
+++ b/src/qmlcompiler/qqmljsstorageinitializer.cpp
@@ -16,18 +16,16 @@ QT_BEGIN_NAMESPACE
* operates only on the annotations and the function description.
*/
-QQmlJSCompilePass::BlocksAndAnnotations
-QQmlJSStorageInitializer::run(Function *function, QQmlJS::DiagnosticMessage *error)
+QQmlJSCompilePass::BlocksAndAnnotations QQmlJSStorageInitializer::run(Function *function)
{
m_function = function;
- m_error = error;
if (QQmlJSRegisterContent &returnType = function->returnType; returnType.isValid()) {
if (const QQmlJSScope::ConstPtr stored
= m_typeResolver->storedType(returnType.containedType())) {
returnType = returnType.storedIn(m_typeResolver->trackedType(stored));
} else {
- setError(QStringLiteral("Cannot store the return type %1.")
+ addError(QStringLiteral("Cannot store the return type %1.")
.arg(returnType.containedType()->internalName()));
return {};
}
@@ -47,7 +45,7 @@ QQmlJSStorageInitializer::run(Function *function, QQmlJS::DiagnosticMessage *err
= m_typeResolver->storedType(content.containedType());
if (!m_typeResolver->adjustTrackedType(originalTracked, adjustedStored)) {
- setError(QStringLiteral("Cannot adjust stored type for %1.")
+ addError(QStringLiteral("Cannot adjust stored type for %1.")
.arg(content.containedType()->internalName()));
}
};