summaryrefslogtreecommitdiffstats
path: root/kio/kio/kfilemetainfo.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:35:07 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:35:07 -0600
commit703fb0c89c2eee56a1e613e67a446db9d4287929 (patch)
treedd8c5ca66075cd89c2638a2b48cf78386a9870a7 /kio/kio/kfilemetainfo.cpp
parent818e7abec3d5d3809b6b77293558678371c16b71 (diff)
downloadtdelibs-703fb0c89c2eee56a1e613e67a446db9d4287929.tar.gz
tdelibs-703fb0c89c2eee56a1e613e67a446db9d4287929.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kio/kio/kfilemetainfo.cpp')
-rw-r--r--kio/kio/kfilemetainfo.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kio/kio/kfilemetainfo.cpp b/kio/kio/kfilemetainfo.cpp
index c345ef89e..0ccbb577b 100644
--- a/kio/kio/kfilemetainfo.cpp
+++ b/kio/kio/kfilemetainfo.cpp
@@ -1626,12 +1626,12 @@ TQString KFileMimeTypeInfo::ItemInfo::string(const TQVariant& value, bool mangle
else if (unit() == KFileMimeTypeInfo::Bytes)
{
// convertSize already adds the correct suffix
- return KIO::convertSize(value.toInt());
+ return TDEIO::convertSize(value.toInt());
}
else if (unit() == KFileMimeTypeInfo::KiloBytes)
{
// convertSizeFromKB already adds the correct suffix
- return KIO::convertSizeFromKB(value.toInt());
+ return TDEIO::convertSizeFromKB(value.toInt());
}
else
s = TDEGlobal::locale()->formatNumber( value.toInt() , 0);
@@ -1643,9 +1643,9 @@ TQString KFileMimeTypeInfo::ItemInfo::string(const TQVariant& value, bool mangle
case TQVariant::ULongLong :
if ( unit() == KFileMimeTypeInfo::Bytes )
- return KIO::convertSize( value.toULongLong() );
+ return TDEIO::convertSize( value.toULongLong() );
else if ( unit() == KFileMimeTypeInfo::KiloBytes )
- return KIO::convertSizeFromKB( value.toULongLong() );
+ return TDEIO::convertSizeFromKB( value.toULongLong() );
else
s = TDEGlobal::locale()->formatNumber( value.toULongLong(), 0 );
break;