aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRobert Löhning <robert.loehning@qt.io>2021-02-25 15:06:08 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-03-01 09:10:23 +0000
commit76f5dc38f61ac6e7add00a9b3c70929768908e9a (patch)
treea0c31b1949fc3d50d78a2d159c3fe960773150f9 /src
parent62b7832512579625a917d82141d09673c7db0d76 (diff)
Fix typo
Change-Id: If8ba26fc0372f181e284aebf6413a5fa9b5118b0 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> (cherry picked from commit 3b5d2210c2b193fde51fb29b6b209ee4c5b8d553) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'src')
-rw-r--r--src/qmldom/qqmldomtop.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qmldom/qqmldomtop.cpp b/src/qmldom/qqmldomtop.cpp
index 7777745887..57259c1659 100644
--- a/src/qmldom/qqmldomtop.cpp
+++ b/src/qmldom/qqmldomtop.cpp
@@ -285,7 +285,7 @@ void DomUniverse::execQueue()
ParsingTask t = m_queue.dequeue();
shared_ptr<DomUniverse> topPtr = t.requestingUniverse.lock();
if (!topPtr) {
- myErrors().error(tr("Ignoring calback for loading of %1: universe is not valid anymore").arg(t.canonicalPath)).handle();
+ myErrors().error(tr("Ignoring callback for loading of %1: universe is not valid anymore").arg(t.canonicalPath)).handle();
}
Q_ASSERT(false && "Unhandled kind in queue");
}