forked from qt-creator/qt-creator
Replace QLatin1String("x") with QLatin1Char('x') where possible
Change-Id: I2f90c8ae7b5e968b9de882833f8661ab540a9232 Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -320,7 +320,7 @@ QString IosRunConfiguration::disabledReason() const
|
||||
IDevice::ConstPtr availDev = dm->deviceAt(idev);
|
||||
if (!availDev.isNull() && availDev->type() == Constants::IOS_DEVICE_TYPE) {
|
||||
if (availDev->deviceState() == IDevice::DeviceReadyToUse) {
|
||||
validDevName += QLatin1String(" ");
|
||||
validDevName += QLatin1Char(' ');
|
||||
validDevName += availDev->displayName();
|
||||
} else if (availDev->deviceState() == IDevice::DeviceConnected) {
|
||||
hasConncetedDev = true;
|
||||
|
Reference in New Issue
Block a user