aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4qobjectwrapper.cpp
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2023-06-05 11:04:30 +0200
committerUlf Hermann <ulf.hermann@qt.io>2023-06-05 12:08:54 +0200
commit4fdaf22a54343f3f1185362db112cc44fd7d34b6 (patch)
treed022cc2acc60f81e7f3c36f185428b5fcad922af /src/qml/jsruntime/qv4qobjectwrapper.cpp
parentd62302a3067f45dab6e8803a244c38149849cbf5 (diff)
QtQml: Fix typo in warning message
Pick-to: 6.5 6.6 Task-number: QTBUG-114086 Change-Id: Iacaaf3ed0696c78664c62398931a13ffbc9f3211 Reviewed-by: Sami Shalayel <sami.shalayel@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4qobjectwrapper.cpp')
-rw-r--r--src/qml/jsruntime/qv4qobjectwrapper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4qobjectwrapper.cpp b/src/qml/jsruntime/qv4qobjectwrapper.cpp
index f308cd7660..4fcdb05e80 100644
--- a/src/qml/jsruntime/qv4qobjectwrapper.cpp
+++ b/src/qml/jsruntime/qv4qobjectwrapper.cpp
@@ -1488,7 +1488,7 @@ static ReturnedValue CallMethod(const QQmlObjectOrGadget &object, int index, QMe
const bool is_signal =
object.metaObject()->method(index).methodType() == QMetaMethod::Signal;
if (is_signal) {
- qWarning() << "Passing incomatible arguments to signals is not supported.";
+ qWarning() << "Passing incompatible arguments to signals is not supported.";
} else {
return engine->throwTypeError(
QLatin1String("Passing incompatible arguments to C++ functions from "