Fix missing white spaces

Change-Id: Ifec1a3200786f88e21feab57c4b8eac436c3f174
Reviewed-by: Mehdi Fekari <mfekari@blackberry.com>
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
This commit is contained in:
Robert Loehning
2014-03-28 16:50:53 +01:00
parent 703bfcc3ff
commit a5c77222d8
2 changed files with 3 additions and 3 deletions

View File

@@ -168,8 +168,8 @@ void BlackBerryApplicationRunner::checkDeviceRuntimeVersion(int status)
const QMessageBox::StandardButton answer =
QMessageBox::question(Core::ICore::mainWindow(),
tr("Confirmation"),
tr("The device runtime version(%1) does not match "
"the API level version(%2).\n"
tr("The device runtime version (%1) does not match "
"the API level version (%2).\n"
"This may cause unexpected behavior when debugging.\n"
"Do you want to continue anyway?")
.arg(runtimeVersion, m_bbApiLevelVersion.toString()),

View File

@@ -187,7 +187,7 @@ bool BlackBerryCheckDeviceStatusStep::handleVersionMismatch(const QString &runti
// TODO: Check if a matching API level exists in the user configurations,
// otherwise let the user download the matching device runtime.
const QMessageBox::StandardButton answer = QMessageBox::question(Core::ICore::mainWindow(), tr("Confirmation"),
tr("The device runtime version(%1) does not match the API level version(%2).\n"
tr("The device runtime version (%1) does not match the API level version (%2).\n"
"Do you want to continue anyway?").arg(runtimeVersion, apiLevelVersion),
QMessageBox::Yes | QMessageBox::No);
return answer == QMessageBox::Yes;