From 79b21d47bce1ee428affc97534cd8b257232a871 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 24 Jan 2013 13:43:14 -0600 Subject: Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4 --- kcontrol/info/memory.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'kcontrol/info/memory.cpp') diff --git a/kcontrol/info/memory.cpp b/kcontrol/info/memory.cpp index 483f7dd1d..49cb03dde 100644 --- a/kcontrol/info/memory.cpp +++ b/kcontrol/info/memory.cpp @@ -80,11 +80,11 @@ static TQString formatted_unit(t_memsize value) { if (value > (1024 * 1024)) if (value > (1024 * 1024 * 1024)) - return i18n("%1 GB").arg(KGlobal::locale()->formatNumber(value / (1024 * 1024 * 1024.0), 2)); + return i18n("%1 GB").arg(TDEGlobal::locale()->formatNumber(value / (1024 * 1024 * 1024.0), 2)); else - return i18n("%1 MB").arg(KGlobal::locale()->formatNumber(value / (1024 * 1024.0), 2)); + return i18n("%1 MB").arg(TDEGlobal::locale()->formatNumber(value / (1024 * 1024.0), 2)); else - return i18n("%1 KB").arg(KGlobal::locale()->formatNumber(value / 1024.0, 2)); + return i18n("%1 KB").arg(TDEGlobal::locale()->formatNumber(value / 1024.0, 2)); } KMemoryWidget::KMemoryWidget(TQWidget * parent, const char *name) @@ -368,7 +368,7 @@ void KMemoryWidget::update_Values() label->clear(); else label->setText(i18n("%1 bytes ="). - arg(KGlobal::locale()-> + arg(TDEGlobal::locale()-> formatNumber(Memory_Info[i], 0))); } -- cgit v1.2.1