diff options
author | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2010-02-24 14:44:32 (GMT) |
---|---|---|
committer | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2010-02-24 14:44:32 (GMT) |
commit | db4f71fc4c7b29a4a37545a52a71269886db0210 (patch) | |
tree | 817f044d5064fc497236c309488e4bd63218e5c8 /tools/assistant/lib | |
parent | 4b344fd9f4eec8cb4271f38e8dfdc88905375e66 (diff) | |
download | Qt-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.cpp | 2 |
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: |