From 76ef832ce5348d12a871223d4c034c7daeaddb82 Mon Sep 17 00:00:00 2001 From: Tim Williams Date: Mon, 17 Oct 2011 18:47:27 +0100 Subject: Adding the remaining Mandriva patches and spec files --- .../ktorrent/ktorrent-fix-KBytesPerSecToString.diff | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 mandriva/2010.2/applications/ktorrent/ktorrent-fix-KBytesPerSecToString.diff (limited to 'mandriva/2010.2/applications/ktorrent/ktorrent-fix-KBytesPerSecToString.diff') diff --git a/mandriva/2010.2/applications/ktorrent/ktorrent-fix-KBytesPerSecToString.diff b/mandriva/2010.2/applications/ktorrent/ktorrent-fix-KBytesPerSecToString.diff new file mode 100644 index 000000000..cdd85d4ec --- /dev/null +++ b/mandriva/2010.2/applications/ktorrent/ktorrent-fix-KBytesPerSecToString.diff @@ -0,0 +1,15 @@ +--- libktorrent/interfaces/functions.cpp.orig 2006-05-21 00:06:28.000000000 +0200 ++++ libktorrent/interfaces/functions.cpp 2006-05-21 00:06:54.000000000 +0200 +@@ -46,7 +46,11 @@ + QString KBytesPerSecToString(double speed,int precision) + { + KLocale* loc = KGlobal::locale(); +- return i18n("%1 KB/s").arg(loc->formatNumber(speed,precision)); ++ QString tmp = loc->formatNumber(speed,precision); ++ if (tmp.startsWith("inf")) ++ return i18n("%1 KB/sec").arg("> 0.0"); ++ else ++ return i18n("%1 KB/sec").arg(tmp); + } + + QString DurationToString(Uint32 nsecs) -- cgit v1.2.3