Remove trailing blanks from messages.

These causing warnings when applying translation patches.

Change-Id: Id260369ac59b4218bf5b8391eb547aec58ffd3f5
Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
This commit is contained in:
Friedemann Kleint
2013-11-05 08:47:27 +01:00
parent 17ac05068e
commit 547d67da7d
2 changed files with 2 additions and 2 deletions

View File

@@ -72,7 +72,7 @@ void QmlJSPreviewRunner::run(const QString &filename)
if (!errorMessage.isEmpty())
QMessageBox::warning(0, tr("Failed to preview Qt Quick file"),
tr("Could not preview Qt Quick (QML) file. Reason: \n%1").arg(errorMessage));
tr("Could not preview Qt Quick (QML) file. Reason:\n%1").arg(errorMessage));
}