Ui: No spaces before "..."

Change-Id: Ic76ef1bea53e2cf5c2d109688247e84c1aa70f6b
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@nokia.com>
This commit is contained in:
Daniel Teske
2012-03-07 15:50:58 +01:00
parent 272e203b36
commit 5585426efc
12 changed files with 24 additions and 24 deletions

View File

@@ -195,7 +195,7 @@ void AbstractMaemoInstallPackageToSysrootStep::run(QFutureInterface<bool> &fi)
connect(m_installerProcess, SIGNAL(readyReadStandardError()),
SLOT(handleInstallerStderr()));
emit addOutput(tr("Installing package to sysroot ..."), MessageOutput);
emit addOutput(tr("Installing package to sysroot..."), MessageOutput);
const int packageFileSize = QFileInfo(m_packageFilePath).size() / (1024*1024);
const QStringList args = madArguments() << m_packageFilePath;
MaemoGlobal::callMadAdmin(*m_installerProcess, args, m_qmakeCommand, true);
@@ -340,7 +340,7 @@ bool MaemoCopyToSysrootStep::init()
void MaemoCopyToSysrootStep::run(QFutureInterface<bool> &fi)
{
emit addOutput(tr("Copying files to sysroot ..."), MessageOutput);
emit addOutput(tr("Copying files to sysroot..."), MessageOutput);
QDir sysrootDir(m_systemRoot);
const QChar sep = QLatin1Char('/');