aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/customtoolchain.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@digia.com>2013-02-13 12:38:06 +0100
committerTobias Hunger <tobias.hunger@digia.com>2013-02-13 12:49:49 +0100
commitb2bad5e54098299f702dfb0bc1704162b50c521e (patch)
treebcf6f46a45b0d7a4f63a315426932428b99b227c /src/plugins/projectexplorer/customtoolchain.cpp
parente3f5597b2616570b20de636edf4e1fb12cddf3fa (diff)
Fix message in customtoolchain.cpp.
Change-Id: Icf48a49330cb39aa04413ac8c54afc7d72e612fb Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Diffstat (limited to 'src/plugins/projectexplorer/customtoolchain.cpp')
-rw-r--r--src/plugins/projectexplorer/customtoolchain.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/customtoolchain.cpp b/src/plugins/projectexplorer/customtoolchain.cpp
index 51643fe3b6..0ff38acb36 100644
--- a/src/plugins/projectexplorer/customtoolchain.cpp
+++ b/src/plugins/projectexplorer/customtoolchain.cpp
@@ -395,7 +395,7 @@ public:
void updateSummaryText()
{
int count = entryCount();
- setSummaryText(count ? tr("%n entries)", "", count) : tr("Empty"));
+ setSummaryText(count ? tr("%n entries", "", count) : tr("Empty"));
}
};