aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml
diff options
context:
space:
mode:
authorIvan Tkachenko <me@ratijas.tk>2023-09-17 23:21:08 +0300
committerIvan Tkachenko <me@ratijas.tk>2023-09-19 15:34:44 +0300
commite9cdeb2f9686dcd6cdbf91b2b1a23c6cf38bfecd (patch)
tree20e607685acc2f6b93587c935f6d44b298bfc0c3 /src/qml/qml
parenta159d87cb9be585ad81e4e4e3e4af86a84c269ab (diff)
Fix whitespace in diagnostics message
Amends 6eb35df60e061b9ce4e88f97a174216e2b1c617f Change-Id: If2ee15d2aa2b3503df0175e67cbd88d3564b6939 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'src/qml/qml')
-rw-r--r--src/qml/qml/qqmlobjectcreator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/qml/qqmlobjectcreator.cpp b/src/qml/qml/qqmlobjectcreator.cpp
index 42bac5d1d1..7ef16a2c1c 100644
--- a/src/qml/qml/qqmlobjectcreator.cpp
+++ b/src/qml/qml/qqmlobjectcreator.cpp
@@ -1083,7 +1083,7 @@ bool QQmlObjectCreator::setPropertyBinding(const QQmlPropertyData *bindingProper
recordError(binding->valueLocation, tr("Cannot assign object type %1 with no default method").arg(QString::fromLatin1(createdSubObject->metaObject()->className())));
return false;
}
- qCWarning(lcQmlDefaultMethod) << "Assigning an object to a signal handler is deprecated."
+ qCWarning(lcQmlDefaultMethod) << "Assigning an object to a signal handler is deprecated. "
"Instead, create the object, give it an id, and call the desired slot from the signal handler."
;