Replace QObject::tr() by tr-functions.

Change-Id: I2e3867b682db971662250c04dec609fd4e3817ea
Reviewed-by: Daniel Teske <daniel.teske@digia.com>
This commit is contained in:
Friedemann Kleint
2013-09-04 16:20:40 +02:00
parent cc80b92bb6
commit dc108bc31f
4 changed files with 30 additions and 26 deletions

View File

@@ -39,34 +39,34 @@ QString AndroidErrorMessage::getMessage(ErrorCode errorCode, const QVariantList
Q_UNUSED(parameters);
switch (errorCode) {
case SDKInstallationError:
return QObject::tr("Android: SDK installation error 0x%1").arg(errorCode, 0, 16);
return tr("Android: SDK installation error 0x%1").arg(errorCode, 0, 16);
case NDKInstallationError:
return QObject::tr("Android: NDK installation error 0x%1").arg(errorCode, 0, 16);
return tr("Android: NDK installation error 0x%1").arg(errorCode, 0, 16);
case JavaInstallationError:
return QObject::tr("Android: Java installation error 0x%1").arg(errorCode, 0, 16);
return tr("Android: Java installation error 0x%1").arg(errorCode, 0, 16);
case AntInstallationError:
return QObject::tr("Android: ant installation error 0x%1").arg(errorCode, 0, 16);
return tr("Android: ant installation error 0x%1").arg(errorCode, 0, 16);
case AdbInstallationError:
return QObject::tr("Android: adb installation error 0x%1").arg(errorCode, 0, 16);
return tr("Android: adb installation error 0x%1").arg(errorCode, 0, 16);
case DeviceConnectionError:
return QObject::tr("Android: Device connection error 0x%1").arg(errorCode, 0, 16);
return tr("Android: Device connection error 0x%1").arg(errorCode, 0, 16);
case DevicePermissionError:
return QObject::tr("Android: Device permission error 0x%1").arg(errorCode, 0, 16);
return tr("Android: Device permission error 0x%1").arg(errorCode, 0, 16);
case DeviceAuthorizationError:
return QObject::tr("Android: Device authorization error 0x%1").arg(errorCode, 0, 16);
return tr("Android: Device authorization error 0x%1").arg(errorCode, 0, 16);
case DeviceAPILevelError:
return QObject::tr("Android: Device API level not supported: error 0x%1").arg(errorCode, 0, 16);
return tr("Android: Device API level not supported: error 0x%1").arg(errorCode, 0, 16);
default:
return QObject::tr("Android: Unknown error 0x%1").arg(errorCode, 0, 16);
return tr("Android: Unknown error 0x%1").arg(errorCode, 0, 16);
}
}