From: J-P Nurmi Date: Fri, 4 Jul 2014 11:07:56 +0000 (+0200) Subject: macdeployqt: remove accessibility plugins that no longer exist X-Git-Tag: v5.3.99+beta1~45 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=52c117a3f5b18d35d741a45a6541832b03fbf562;p=platform%2Fupstream%2Fqttools.git macdeployqt: remove accessibility plugins that no longer exist Change-Id: Icd87b10d8173b6a97ddc5099298360084eb7d624 Reviewed-by: Frederik Gladhorn --- diff --git a/src/macdeployqt/shared/shared.cpp b/src/macdeployqt/shared/shared.cpp index 722f1be..9996fd3 100644 --- a/src/macdeployqt/shared/shared.cpp +++ b/src/macdeployqt/shared/shared.cpp @@ -567,12 +567,6 @@ void deployPlugins(const ApplicationBundleInfo &appBundleInfo, const QString &pl // Cocoa print support pluginList.append("printsupport/libcocoaprintersupport.dylib"); - // Accessibility - if (deploymentInfo.deployedFrameworks.contains(QStringLiteral("QtWidgets.framework"))) - pluginList.append("accessible/libqtaccessiblewidgets.dylib"); - if (deploymentInfo.deployedFrameworks.contains(QStringLiteral("QtQuick.framework"))) - pluginList.append("accessible/libqtaccessiblequick.dylib"); - // All image formats (svg if QtSvg.framework is used) QStringList imagePlugins = QDir(pluginSourcePath + QStringLiteral("/imageformats")).entryList(QStringList() << QStringLiteral("*.dylib")); foreach (const QString &plugin, imagePlugins) {