forked from qt-creator/qt-creator
Remove most leading/trailing blanks from translated messages.
They are a hassle for translators and reviewers alike. Change-Id: I363138212b692cf75fe1605df8af3721315d37e1 Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -168,14 +168,14 @@ bool MemcheckRunner::start()
|
||||
}
|
||||
|
||||
bool check = d->xmlServer.listen(hostAddr);
|
||||
if (!check) emit processErrorReceived( tr("XmlServer on %1: ").arg(ip) + d->xmlServer.errorString(), QProcess::FailedToStart );
|
||||
if (!check) emit processErrorReceived( tr("XmlServer on %1:").arg(ip) + QLatin1Char(' ') + d->xmlServer.errorString(), QProcess::FailedToStart );
|
||||
QTC_ASSERT(check, return false);
|
||||
d->xmlServer.setMaxPendingConnections(1);
|
||||
const quint16 xmlPortNumber = d->xmlServer.serverPort();
|
||||
connect(&d->xmlServer, SIGNAL(newConnection()), SLOT(xmlSocketConnected()));
|
||||
|
||||
check = d->logServer.listen(hostAddr);
|
||||
if (!check) emit processErrorReceived( tr("LogServer on %1: ").arg(ip) + d->logServer.errorString(), QProcess::FailedToStart );
|
||||
if (!check) emit processErrorReceived( tr("LogServer on %1:").arg(ip) + QLatin1Char(' ') + d->logServer.errorString(), QProcess::FailedToStart );
|
||||
QTC_ASSERT(check, return false);
|
||||
d->logServer.setMaxPendingConnections(1);
|
||||
const quint16 logPortNumber = d->logServer.serverPort();
|
||||
|
||||
Reference in New Issue
Block a user