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/history/historypanel.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/history/historypanel.cpp')
-rw-r--r-- | src/history/historypanel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/history/historypanel.cpp b/src/history/historypanel.cpp index 28284e0a..d8309eed 100644 --- a/src/history/historypanel.cpp +++ b/src/history/historypanel.cpp @@ -175,7 +175,7 @@ void HistoryPanel::openAll() i18ncp("%1=Number of tabs. Value is always >=8", "You are about to open %1 tabs.\nAre you sure?", "You are about to open %1 tabs.\nAre you sure?", - QString::number(allChild.length()))) == KMessageBox::Continue) + allChild.length())) == KMessageBox::Continue) ) return; } |