Remove leading newline characters from translated messages.

Change-Id: I237ad558e27a619f9162ebec2ef4ede9ed2cdeea
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
Friedemann Kleint
2014-02-28 14:37:46 +01:00
committed by hjk
parent 6343e101f2
commit 028fe7f627
9 changed files with 15 additions and 12 deletions

View File

@@ -1804,7 +1804,7 @@ void DebuggerEngine::checkForReleaseBuild(const DebuggerStartParameters &sp)
foreach (const QByteArray &name, interesting) {
const QString found = seen.contains(name) ? tr("Found.") : tr("Not found.");
detailedWarning.append(tr("\nSection %1: %2").arg(_(name)).arg(found));
detailedWarning.append(QLatin1Char('\n') + tr("Section %1: %2").arg(_(name)).arg(found));
}
break;
}