From 95fa1b2e1f05fa546f5846267044032bcdb92493 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 1 Feb 2013 08:05:37 -0600 Subject: Rename KLocale to enhance compatibility with KDE4 --- plugins/infowidget/fileview.cpp | 2 +- plugins/infowidget/iwfiletreeitem.cpp | 2 +- plugins/infowidget/localefloatvalidator.h | 2 +- plugins/infowidget/peerview.cpp | 2 +- plugins/webinterface/php_interface.cpp | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) (limited to 'plugins') diff --git a/plugins/infowidget/fileview.cpp b/plugins/infowidget/fileview.cpp index 22a79ce..25d910b 100644 --- a/plugins/infowidget/fileview.cpp +++ b/plugins/infowidget/fileview.cpp @@ -185,7 +185,7 @@ namespace kt percent = 0.0; else if (percent > 100.0) percent = 100.0; - KLocale* loc = TDEGlobal::locale(); + TDELocale* loc = TDEGlobal::locale(); it.current()->setText(4,i18n("%1 %").arg(loc->formatNumber(percent,2))); } } diff --git a/plugins/infowidget/iwfiletreeitem.cpp b/plugins/infowidget/iwfiletreeitem.cpp index af976ca..d4837dd 100644 --- a/plugins/infowidget/iwfiletreeitem.cpp +++ b/plugins/infowidget/iwfiletreeitem.cpp @@ -91,7 +91,7 @@ namespace kt percent = 0.0; else if (percent > 100.0) percent = 100.0; - KLocale* loc = TDEGlobal::locale(); + TDELocale* loc = TDEGlobal::locale(); setText(4,i18n("%1 %").arg(loc->formatNumber(percent,2))); perc_complete = percent; } diff --git a/plugins/infowidget/localefloatvalidator.h b/plugins/infowidget/localefloatvalidator.h index d5217ba..a20858f 100644 --- a/plugins/infowidget/localefloatvalidator.h +++ b/plugins/infowidget/localefloatvalidator.h @@ -28,7 +28,7 @@ namespace kt{ /** * @author Jonas Widarsson * - * A float validator that respects KLocale::decimalSymbol() + * A float validator that respects TDELocale::decimalSymbol() */ class LocaleFloatValidator : public TQValidator { diff --git a/plugins/infowidget/peerview.cpp b/plugins/infowidget/peerview.cpp index ab3b06f..6d163e4 100644 --- a/plugins/infowidget/peerview.cpp +++ b/plugins/infowidget/peerview.cpp @@ -155,7 +155,7 @@ namespace kt void PeerViewItem::update() { - KLocale* loc = TDEGlobal::locale(); + TDELocale* loc = TDEGlobal::locale(); const PeerInterface::Stats & s = peer->getStats(); if (s.download_rate >= 103) // lowest "visible" speed, all below will be 0,0 Kb/s diff --git a/plugins/webinterface/php_interface.cpp b/plugins/webinterface/php_interface.cpp index bffc1fc..a4f5f6a 100644 --- a/plugins/webinterface/php_interface.cpp +++ b/plugins/webinterface/php_interface.cpp @@ -46,7 +46,7 @@ namespace kt TQString BytesToString2(Uint64 bytes,int precision = 2) { - KLocale* loc = TDEGlobal::locale(); + TDELocale* loc = TDEGlobal::locale(); if (bytes >= 1024 * 1024 * 1024) return TQString("%1 GB").arg(loc->formatNumber(bytes / TO_GIG,precision < 0 ? 2 : precision)); else if (bytes >= 1024*1024) @@ -59,7 +59,7 @@ namespace kt TQString KBytesPerSecToString2(double speed,int precision = 2) { - KLocale* loc = TDEGlobal::locale(); + TDELocale* loc = TDEGlobal::locale(); return TQString("%1 KB/s").arg(loc->formatNumber(speed,precision)); } -- cgit v1.2.3