summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@digia.com>2013-12-16 17:50:02 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-12-17 09:49:55 +0100
commitf874e6ff3b9fc28ec6653ca4226455fa3c18fe7b (patch)
treeb4658cd5b633b9277a268af55b941e90af5e9162
parente14f2d2c85c92fc7ecd4b9032632ffa7bcfbc7ab (diff)
windeployqt: Fix scanning of QML-plugins.
Task-number: QTBUG-35637 Change-Id: I0f5a3df3b9be83f3d153135bbca168bfc9005696 Reviewed-by: Andrew Knight <andrew.knight@digia.com>
-rw-r--r--src/windeployqt/qmlutils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/windeployqt/qmlutils.cpp b/src/windeployqt/qmlutils.cpp
index 8e16a9526..1a2ea60b4 100644
--- a/src/windeployqt/qmlutils.cpp
+++ b/src/windeployqt/qmlutils.cpp
@@ -135,7 +135,7 @@ void QmlImportScanResult::append(const QmlImportScanResult &other)
modulesDirectories.append(module);
}
foreach (const QString &plugin, other.plugins) {
- if (!plugin.contains(plugin))
+ if (!plugins.contains(plugin))
plugins.append(plugin);
}
}