aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/ios/iostoolhandler.cpp
diff options
context:
space:
mode:
authorFawzi Mohamed <[email protected]>2013-10-07 20:14:54 +0200
committerhjk <[email protected]>2013-10-14 16:49:53 +0200
commit8fbb44bd18b4150d01adfd5d9154368d5fc46160 (patch)
tree8c50ac207076d99adceccef880e02ce3db5b2733 /src/plugins/ios/iostoolhandler.cpp
parent23673655bfe9724d003568362da91da3cb637b99 (diff)
ios: single xcode and cleaned configurations
Use just one xcode, namely the one of xcode-select (like qmake) cleaned iosconfigurations: * cleaned now unneded xcode paths * using static methods, removed IosConfig Change-Id: Icc4d1bc1063a5f65230736a47b4ca9b139fa79e0 Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/ios/iostoolhandler.cpp')
-rw-r--r--src/plugins/ios/iostoolhandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/ios/iostoolhandler.cpp b/src/plugins/ios/iostoolhandler.cpp
index 07d759069ed..d8589640e34 100644
--- a/src/plugins/ios/iostoolhandler.cpp
+++ b/src/plugins/ios/iostoolhandler.cpp
@@ -905,7 +905,7 @@ void IosSimulatorToolHandlerPrivate::requestRunApp(const QString &bundlePath,
QStringList args;
args << QLatin1String("launch") << bundlePath;
- Utils::FileName devPath = IosConfigurations::instance().config().developerPath;
+ Utils::FileName devPath = IosConfigurations::developerPath();
if (!devPath.isEmpty())
args << QLatin1String("--developer-path") << devPath.toString();
addDeviceArguments(args);