summaryrefslogtreecommitdiffstats
path: root/kio/kfile/krecentdirs.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-24 13:47:22 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-24 13:47:22 -0600
commit28edc0aa2ab09297288186f5bc15765eb7be58c0 (patch)
tree7b7a01768b3781763186c825af21bb14717d2c32 /kio/kfile/krecentdirs.cpp
parent07c48c43ff72c237e4028154f4594102b798073f (diff)
downloadtdelibs-28edc0aa2ab09297288186f5bc15765eb7be58c0.tar.gz
tdelibs-28edc0aa2ab09297288186f5bc15765eb7be58c0.zip
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'kio/kfile/krecentdirs.cpp')
-rw-r--r--kio/kfile/krecentdirs.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kio/kfile/krecentdirs.cpp b/kio/kfile/krecentdirs.cpp
index 22b4cd477..609668373 100644
--- a/kio/kfile/krecentdirs.cpp
+++ b/kio/kfile/krecentdirs.cpp
@@ -34,7 +34,7 @@
static void recentdirs_done(KConfig *config)
{
- if (config == KGlobal::config())
+ if (config == TDEGlobal::config())
{
config->sync();
}
@@ -57,14 +57,14 @@ static KConfig *recentdirs_readList(TQString &key, TQStringList &result, bool re
else
{
key = key.mid(1);
- config = KGlobal::config();
+ config = TDEGlobal::config();
config->setGroup(TQString::fromLatin1("Recent Dirs"));
}
result=config->readPathListEntry(key);
if (result.isEmpty())
{
- result.append(KGlobalSettings::documentPath());
+ result.append(TDEGlobalSettings::documentPath());
}
return config;
}