diff options
Diffstat (limited to 'kdat/Util.cpp')
-rw-r--r-- | kdat/Util.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kdat/Util.cpp b/kdat/Util.cpp index 11e7219..b52f984 100644 --- a/kdat/Util.cpp +++ b/kdat/Util.cpp @@ -24,12 +24,12 @@ TQString Util::bytesToString( uint bytes ) { - return KGlobal::locale()->formatNumber(bytes, 0); + return TDEGlobal::locale()->formatNumber(bytes, 0); } TQString Util::kbytesToString( uint kbytes ) { - return KGlobal::locale()->formatNumber(kbytes, 0) + 'k'; + return TDEGlobal::locale()->formatNumber(kbytes, 0) + 'k'; } TQString Util::longestCommonPath( const TQStringList& files ) |