aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2022-03-11 18:37:13 +0100
committerAlexandru Croitor <alexandru.croitor@qt.io>2022-03-16 11:38:09 +0100
commit021ea4fd71ba27c3864a5c897cd59941617de864 (patch)
treeed2c84b0cc4435f8e2ce2f475a22d51da4d0bf54
parent9bd33dc7a17996a7f3844e3f28040ccd27da2830 (diff)
Clarify that a dynamic plugin is not resolved
This make it clearer that if types are successfully found, it must mean that a static plugin or linked library must have been found. Change-Id: Ifaaa6fd4f385d7fc0e645b1da4a414a5cbbc7800 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io> (cherry picked from commit 28708434b19c67557181eccc59ad154f4ac78cf3) Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
-rw-r--r--src/qml/qml/qqmlpluginimporter.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/qml/qml/qqmlpluginimporter.cpp b/src/qml/qml/qqmlpluginimporter.cpp
index 7723630e1d..8ef64436d4 100644
--- a/src/qml/qml/qqmlpluginimporter.cpp
+++ b/src/qml/qml/qqmlpluginimporter.cpp
@@ -487,8 +487,9 @@ QString QQmlPluginImporter::resolvePlugin(const QString &qmldirPluginPath, const
#endif
}
- qCDebug(lcQmlImport) << "resolvePlugin" << "Could not resolve plugin"
- << baseName << "in" << qmldirPath;
+ qCDebug(lcQmlImport) << "resolvePlugin" << "Could not resolve dynamic plugin with base name"
+ << baseName << "in" << qmldirPath
+ << " file does not exist";
return QString();
}