diff options
author | hjk <[email protected]> | 2014-10-24 13:15:54 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2014-11-03 10:23:09 +0100 |
commit | 9477ed0a3fce682a15a3cc6bddb801f3c10495a6 (patch) | |
tree | fb0832abcb05054046ed3006ab501db0e61e588a /src/plugins/ios/iostoolhandler.cpp | |
parent | 36f94d36619df05e3f383e344fd1eab12c695262 (diff) |
Introduce and use FileName::exists()
This can use the faster route through QFileInfo::exist now.
Change-Id: Idb41b5d5185d7f02eacba498fb01f483d95e8d57
Reviewed-by: Eike Ziller <[email protected]>
Reviewed-by: Christian Stenger <[email protected]>
Diffstat (limited to 'src/plugins/ios/iostoolhandler.cpp')
-rw-r--r-- | src/plugins/ios/iostoolhandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/ios/iostoolhandler.cpp b/src/plugins/ios/iostoolhandler.cpp index e64181079d3..61617bc5a85 100644 --- a/src/plugins/ios/iostoolhandler.cpp +++ b/src/plugins/ios/iostoolhandler.cpp @@ -738,7 +738,7 @@ QString IosToolHandler::iosSimulatorToolPath() Utils::FileName devPath = Internal::IosConfigurations::developerPath(); bool version182 = devPath.appendPath(QLatin1String( "Platforms/iPhoneSimulator.platform/Developer/Library/PrivateFrameworks/iPhoneSimulatorRemoteClient.framework")) - .toFileInfo().exists(); + .exists(); QString res = Core::ICore::libexecPath() + QLatin1String("/ios/iossim"); if (version182) res = res.append(QLatin1String("_1_8_2")); |