summaryrefslogtreecommitdiffstats
path: root/tools/assistant/lib
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-02-24 14:44:32 (GMT)
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-02-24 14:44:32 (GMT)
commitdb4f71fc4c7b29a4a37545a52a71269886db0210 (patch)
tree817f044d5064fc497236c309488e4bd63218e5c8 /tools/assistant/lib
parent4b344fd9f4eec8cb4271f38e8dfdc88905375e66 (diff)
downloadQt-db4f71fc4c7b29a4a37545a52a71269886db0210.zip
Qt-db4f71fc4c7b29a4a37545a52a71269886db0210.tar.gz
Qt-db4f71fc4c7b29a4a37545a52a71269886db0210.tar.bz2
tr()-Fixes in Assistant/QHelpLib code.
Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
Diffstat (limited to 'tools/assistant/lib')
-rw-r--r--tools/assistant/lib/qhelpsearchresultwidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/assistant/lib/qhelpsearchresultwidget.cpp b/tools/assistant/lib/qhelpsearchresultwidget.cpp
index 8e476d5..2f5489b 100644
--- a/tools/assistant/lib/qhelpsearchresultwidget.cpp
+++ b/tools/assistant/lib/qhelpsearchresultwidget.cpp
@@ -304,7 +304,7 @@ private:
last = resultLastToShow > count ? count : resultLastToShow;
}
}
- hitsLabel->setText(QHelpSearchResultWidget::tr("%1 - %2 of %3 Hits").arg(first).arg(last).arg(count));
+ hitsLabel->setText(QHelpSearchResultWidget::tr("%1 - %2 of %n Hits", 0, count).arg(first).arg(last));
}
private: