From kde-commits Mon Dec 09 01:58:04 2002 From: Maks Orlovich Date: Mon, 09 Dec 2002 01:58:04 +0000 To: kde-commits Subject: kdelibs/khtml X-MARC-Message: https://marc.info/?l=kde-commits&m=103939921412349 CVS commit by orlovich: Finally commit the patch from Jonathan Marten for #25528 -- after 1 year and 7 months -- how in the world did that happen!? This makes sure that the file name arg() is last so that any %2's in it don't pick up the size.. Many thaks to Mr. Marten for the patch.... CCMAIL: 25528-done@bugs.kde.org M +1 -1 khtml_part.cpp 1.776 --- kdelibs/khtml/khtml_part.cpp #1.775:1.776 @@ -2513,5 +2513,5 @@ void KHTMLPart::overURL( const QString & { float d = (float) buff.st_size/1024.0; - text = i18n("%1 (%2 K)").arg(text2).arg(KGlobal::locale()->formatNumber(d, 2)); // was %.2f + text = i18n("%2 (%1 K)").arg(KGlobal::locale()->formatNumber(d, 2)).arg(text2); // was %.2f } text += " ";