forked from qt-creator/qt-creator
iOS: More FileName::appendPath -> pathAppended changes
Change-Id: I3db6b1778e6e47e26e243fb2609c481651aa91fe Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -449,9 +449,9 @@ void IosDebugSupport::start()
|
||||
if (deviceSdk1.toFileInfo().isDir()) {
|
||||
deviceSdk = deviceSdk1.toString();
|
||||
} else {
|
||||
FileName deviceSdk2 = IosConfigurations::developerPath()
|
||||
.appendPath("Platforms/iPhoneOS.platform/DeviceSupport/")
|
||||
.appendPath(osVersion).appendPath("Symbols");
|
||||
const FileName deviceSdk2 = IosConfigurations::developerPath()
|
||||
.pathAppended("Platforms/iPhoneOS.platform/DeviceSupport/"
|
||||
+ osVersion + "/Symbols");
|
||||
if (deviceSdk2.toFileInfo().isDir()) {
|
||||
deviceSdk = deviceSdk2.toString();
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user