aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqml.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/qml/qqml.cpp')
-rw-r--r--src/qml/qml/qqml.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/qml/qqml.cpp b/src/qml/qml/qqml.cpp
index 82cba4e9d6..ff419b0b34 100644
--- a/src/qml/qml/qqml.cpp
+++ b/src/qml/qml/qqml.cpp
@@ -164,8 +164,8 @@ void QQmlPrivate::qmlRegistrationWarning(
case UnconstructibleSingleton:
qWarning()
<< "Singleton" << metaType.name()
- << "needs either a default constructor or, when adding a default"
- << "constructor is infeasible, a public static"
+ << "needs to be a concrete class with either a default constructor"
+ << "or, when adding a default constructor is infeasible, a public static"
<< "create(QQmlEngine *, QJSEngine *) method.";
break;
case NonQObjectWithAtached: