summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-02-01 08:05:09 -0600
committerTimothy Pearson <[email protected]>2013-02-01 08:05:09 -0600
commitee20b8ce03534b9e5a92a459e5d8abbaaf7360d2 (patch)
tree3cffb99d0174a289ff8fb1ebbaa85c34fe027c7b
parentde1a873197d025a901dd0450da3d0898aa113af0 (diff)
downloadkrusader-ee20b8ce03534b9e5a92a459e5d8abbaaf7360d2.tar.gz
krusader-ee20b8ce03534b9e5a92a459e5d8abbaaf7360d2.zip
Rename KLocale to enhance compatibility with KDE4
-rw-r--r--krusader/DiskUsage/filelightParts/fileTree.cpp2
-rw-r--r--krusader/DiskUsage/radialMap/segmentTip.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/krusader/DiskUsage/filelightParts/fileTree.cpp b/krusader/DiskUsage/filelightParts/fileTree.cpp
index d9f1499..60943fe 100644
--- a/krusader/DiskUsage/filelightParts/fileTree.cpp
+++ b/krusader/DiskUsage/filelightParts/fileTree.cpp
@@ -52,7 +52,7 @@ File::humanReadableSize( FileSize size, UnitPrefix key /*= mega*/ ) //static
{
TQString s;
double prettySize = (double)size / (double)DENOMINATOR[key];
- const KLocale &locale = *TDEGlobal::locale();
+ const TDELocale &locale = *TDEGlobal::locale();
if( prettySize >= 0.01 )
{
diff --git a/krusader/DiskUsage/radialMap/segmentTip.cpp b/krusader/DiskUsage/radialMap/segmentTip.cpp
index 6ef30ab..4261166 100644
--- a/krusader/DiskUsage/radialMap/segmentTip.cpp
+++ b/krusader/DiskUsage/radialMap/segmentTip.cpp
@@ -84,7 +84,7 @@ SegmentTip::updateTip( const File* const file, const Directory* const root )
{
const TQString s1 = file->fullPath( root );
TQString s2 = file->humanReadableSize();
- KLocale *loc = TDEGlobal::locale();
+ TDELocale *loc = TDEGlobal::locale();
const uint MARGIN = 3;
const uint pc = 100 * file->size() / root->size();
uint maxw = 0;