From f874e6ff3b9fc28ec6653ca4226455fa3c18fe7b Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Mon, 16 Dec 2013 17:50:02 +0100 Subject: windeployqt: Fix scanning of QML-plugins. Task-number: QTBUG-35637 Change-Id: I0f5a3df3b9be83f3d153135bbca168bfc9005696 Reviewed-by: Andrew Knight --- src/windeployqt/qmlutils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } -- cgit v1.2.3