aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmldom/qqmldomitem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qmldom/qqmldomitem.cpp')
-rw-r--r--src/qmldom/qqmldomitem.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/qmldom/qqmldomitem.cpp b/src/qmldom/qqmldomitem.cpp
index c2acbaebf2..296083c99b 100644
--- a/src/qmldom/qqmldomitem.cpp
+++ b/src/qmldom/qqmldomitem.cpp
@@ -614,7 +614,7 @@ bool DomItem::resolve(Path path,
root = root.environment()[u"universe"];
break;
case PathRoot::Other:
- myResolveErrors().error(tr("Root context %1 is not knwon").arg(path.headName())).handle(errorHandler);
+ myResolveErrors().error(tr("Root context %1 is not known").arg(path.headName())).handle(errorHandler);
return false;
}
toDos[0] = {root, 1};
@@ -660,7 +660,8 @@ bool DomItem::resolve(Path path,
}
if (visitedRefs->contains(toResolve)) {
myResolveErrors().error([visitedRefs, toResolve](Sink sink) {
- sink(tr("Circular reference:\n"));
+ sink(tr("Circular reference:"));
+ sink(u"\n");
for (const Path &vPath : *visitedRefs) {
sink(u" ");
vPath.dump(sink);
@@ -755,7 +756,7 @@ bool DomItem::resolve(Path path,
current = PathCurrent::LookupDynamic;
}
if (current == PathCurrent::LookupStrict) {
- myResolveErrors().error(tr("@lookupStrinct unimplemented"))
+ myResolveErrors().error(tr("@lookupStrict unimplemented"))
.handle(errorHandler);
return false;
} else if (current == PathCurrent::LookupDynamic) {