aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/vcsbase
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@theqtcompany.com>2015-04-15 14:45:51 +0200
committerTobias Hunger <tobias.hunger@theqtcompany.com>2015-04-15 13:06:56 +0000
commit3d6d33f60d666c8cdab0aa7bad2ee417323b2ee0 (patch)
tree01f64f67edf6a39cd00dfd2cab268107ea389abb /src/plugins/vcsbase
parent387f7467684aced939308d759521f1c0d2bc8eb3 (diff)
Fix printing of seconds and milliseconds
We use a space between the number and the unit and use 'ms' or 's'. Change-Id: I689a8639c2d33c2f97789455b1e05693be0b2ccb Reviewed-by: Leena Miettinen <riitta-leena.miettinen@theqtcompany.com>
Diffstat (limited to 'src/plugins/vcsbase')
-rw-r--r--src/plugins/vcsbase/vcscommand.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/vcsbase/vcscommand.cpp b/src/plugins/vcsbase/vcscommand.cpp
index cc1d9d2753..0f8deea498 100644
--- a/src/plugins/vcsbase/vcscommand.cpp
+++ b/src/plugins/vcsbase/vcscommand.cpp
@@ -545,7 +545,7 @@ bool VcsCommand::runFullySynchronous(const QStringList &arguments, int timeoutS,
if (!Utils::SynchronousProcess::readDataFromProcess(process, timeoutS, outputData, errorData, true)) {
if (errorData)
- errorData->append(tr("Error: Executable timed out after %1s.").arg(timeoutS).toLocal8Bit());
+ errorData->append(tr("Error: Executable timed out after %1 s.").arg(timeoutS).toLocal8Bit());
Utils::SynchronousProcess::stopProcess(process);
return false;
}