diff options
author | Jonathan Thomas <echidnaman@kubuntu.org> | 2010-05-27 11:07:43 -0400 |
---|---|---|
committer | Jonathan Thomas <echidnaman@kubuntu.org> | 2010-05-27 11:07:43 -0400 |
commit | ae153a16ec6ecf667fb0137d813d3c52a0785c71 (patch) | |
tree | 514c3e39347471abf9215481a73ad468cc29de57 /src/bookmarks/bookmarkstreemodel.cpp | |
parent | Const iterator fixes (diff) | |
download | rekonq-ae153a16ec6ecf667fb0137d813d3c52a0785c71.tar.xz |
Don't use QString::number(), KDE will format the numbers is an l10n-friendly fashion, QString::number() won't
Diffstat (limited to 'src/bookmarks/bookmarkstreemodel.cpp')
-rw-r--r-- | src/bookmarks/bookmarkstreemodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bookmarks/bookmarkstreemodel.cpp b/src/bookmarks/bookmarkstreemodel.cpp index 4003cf3f..a865a99d 100644 --- a/src/bookmarks/bookmarkstreemodel.cpp +++ b/src/bookmarks/bookmarkstreemodel.cpp @@ -75,7 +75,7 @@ QVariant BtmItem::data(int role) const } if (m_kbm.isGroup()) { - tooltip += i18nc("%1=Number of items in bookmark folder", " (%1 items)", QString::number(childCount())); + tooltip += i18nc("%1=Number of items in bookmark folder", " (%1 items)", childCount()); } if (!m_kbm.url().url().isEmpty()) { |