summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qguiapplication.cpp
diff options
context:
space:
mode:
authorMorten Johan Sørvig <morten.sorvig@digia.com>2013-02-12 11:34:55 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-02-12 14:58:59 +0100
commitf5acd545a8bf8b187be6b3dd29f095b1fa7e94ea (patch)
treec6b8df7acea55c0abc3b3ca7fa1fa536fa575969 /src/gui/kernel/qguiapplication.cpp
parent60c1f9f2744f7a627b60d0eb5fbdf484a327a234 (diff)
Mac: Remove broken platformPluginPath code.
The missing "/" in front of "../Plugins" prevents this from working - platformPluginPath is never set. Deployed platform plugin loading works in spite of this via qt.conf which adds the plugin path to QCoreApplication::libraryPaths(). Change-Id: I7ae4d13c65a380ddad72bffd29b776c39ea91c8a Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@digia.com>
Diffstat (limited to 'src/gui/kernel/qguiapplication.cpp')
-rw-r--r--src/gui/kernel/qguiapplication.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/gui/kernel/qguiapplication.cpp b/src/gui/kernel/qguiapplication.cpp
index 3044c1dee2..02ae51bfc2 100644
--- a/src/gui/kernel/qguiapplication.cpp
+++ b/src/gui/kernel/qguiapplication.cpp
@@ -851,15 +851,6 @@ void QGuiApplicationPrivate::createPlatformIntegration()
// Load the platform integration
QString platformPluginPath = QLatin1String(qgetenv("QT_QPA_PLATFORM_PLUGIN_PATH"));
- // On Mac, look inside the application bundle for the platform plugin.
- // TODO (msorvig): Create proper cross-platform solution for loading
- // deployed platform plugins
-#ifdef Q_OS_MAC
- const QString bundlePluginPath = QCoreApplication::applicationDirPath() + QLatin1String("../Plugins/");
- if (platformPluginPath.isEmpty() && QDir(bundlePluginPath).exists()) {
- platformPluginPath = bundlePluginPath;
- }
-#endif
QByteArray platformName;
#ifdef QT_QPA_DEFAULT_PLATFORM_NAME