summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/buildmanager.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-04-19 14:57:46 +0200
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-04-19 14:57:46 +0200
commit557d9cdc719d349915fd666d20ff33b417596c2b (patch)
tree52a3f8809ddf21e8156523cfd40ec0e840efe3de /src/plugins/projectexplorer/buildmanager.cpp
parent274ec5657d4bf1d7a2be604ce9fa9ee4498e80f3 (diff)
downloadqt-creator-557d9cdc719d349915fd666d20ff33b417596c2b.tar.gz
tr()-Fixes
Diffstat (limited to 'src/plugins/projectexplorer/buildmanager.cpp')
-rw-r--r--src/plugins/projectexplorer/buildmanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/buildmanager.cpp b/src/plugins/projectexplorer/buildmanager.cpp
index ef4a75b829..f538d8d47a 100644
--- a/src/plugins/projectexplorer/buildmanager.cpp
+++ b/src/plugins/projectexplorer/buildmanager.cpp
@@ -63,7 +63,7 @@ using namespace ProjectExplorer::Internal;
static inline QString msgProgress(int n, int total)
{
- return BuildManager::tr("Finished %n of %1 build steps", 0, n).arg(total);
+ return BuildManager::tr("Finished %1 of %n build steps", 0, n).arg(total);
}
BuildManager::BuildManager(ProjectExplorerPlugin *parent)