summaryrefslogtreecommitdiffstats
path: root/tdecore
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-30 13:50:27 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-30 13:50:27 -0600
commit21bc7541114fb026606284e45dc10e3320f39f1d (patch)
tree1c2006752ae09dda7ed8a635d7a4dfa8eacea0cb /tdecore
parent120efd17d0cec4846e7151633a451d54fa714241 (diff)
downloadtdelibs-21bc7541114fb026606284e45dc10e3320f39f1d.tar.gz
tdelibs-21bc7541114fb026606284e45dc10e3320f39f1d.zip
Fix a few remaining references to kio_
Diffstat (limited to 'tdecore')
-rw-r--r--tdecore/kdebug.areas54
-rw-r--r--tdecore/kdebugrc4
-rw-r--r--tdecore/kglobalsettings.cpp2
-rw-r--r--tdecore/kprotocolinfo_tdecore.cpp2
-rw-r--r--tdecore/ksimpledirwatch.cpp2
5 files changed, 32 insertions, 32 deletions
diff --git a/tdecore/kdebug.areas b/tdecore/kdebug.areas
index d714c6535..8621f7897 100644
--- a/tdecore/kdebug.areas
+++ b/tdecore/kdebug.areas
@@ -261,34 +261,34 @@
7043 kio (bookmarks)
# 71xx are for tdeioslaves
-7101 kio_file
-7102 kio_ftp
-7103 kio_http
+7101 tdeio_file
+7102 tdeio_ftp
+7103 tdeio_http
7104 kcookiejar
-7105 kio_pop3
-7106 kio_smb
-7107 kio_man
-7108 kio_info
-7109 kio_tar
-7110 kio_gzip
-7111 kio_sql
-7112 kio_smtp
-7113 kio_http_debug
-7114 kio_nntp
-7115 kio_thumbnail
-7116 kio_imap
-7117 kio_audiocd
-7118 kio_bzip2
-7119 kio_help
-7120 kio_sftp
-7121 kio_nfs
-7122 kio_sieve
-7123 kio_kamera
-7124 kio_cgi
-7125 kio_ldap
-7126 kio_devices
-7127 kio_fish
-7128 kio_svn
+7105 tdeio_pop3
+7106 tdeio_smb
+7107 tdeio_man
+7108 tdeio_info
+7109 tdeio_tar
+7110 tdeio_gzip
+7111 tdeio_sql
+7112 tdeio_smtp
+7113 tdeio_http_debug
+7114 tdeio_nntp
+7115 tdeio_thumbnail
+7116 tdeio_imap
+7117 tdeio_audiocd
+7118 tdeio_bzip2
+7119 tdeio_help
+7120 tdeio_sftp
+7121 tdeio_nfs
+7122 tdeio_sieve
+7123 tdeio_kamera
+7124 tdeio_cgi
+7125 tdeio_ldap
+7126 tdeio_devices
+7127 tdeio_fish
+7128 tdeio_svn
# tdesdk
8100 kompare
diff --git a/tdecore/kdebugrc b/tdecore/kdebugrc
index 10032a633..7adc7ecc1 100644
--- a/tdecore/kdebugrc
+++ b/tdecore/kdebugrc
@@ -112,7 +112,7 @@ InfoOutput=4
[5901]
InfoOutput=4
-# kio_http_debug debug info off
+# tdeio_http_debug debug info off
[7113]
InfoOutput=4
@@ -120,7 +120,7 @@ InfoOutput=4
[7118]
InfoOutput=4
-# kio_nntp debug info off
+# tdeio_nntp debug info off
[7114]
InfoOutput=4
diff --git a/tdecore/kglobalsettings.cpp b/tdecore/kglobalsettings.cpp
index dbd751eea..58eeff416 100644
--- a/tdecore/kglobalsettings.cpp
+++ b/tdecore/kglobalsettings.cpp
@@ -539,7 +539,7 @@ void TDEGlobalSettings::initStatic() // should be called initPaths(). Don't put
if ( !s_documentPath->endsWith("/"))
s_documentPath->append('/');
- // Trash Path - TODO remove in KDE4 (kio_trash can't use it for interoperability reasons)
+ // Trash Path - TODO remove in KDE4 (tdeio_trash can't use it for interoperability reasons)
*s_trashPath = *s_desktopPath + i18n("Trash") + "/";
*s_trashPath = g.readPathEntry( "Trash" , *s_trashPath);
*s_trashPath = TQDir::cleanDirPath( *s_trashPath );
diff --git a/tdecore/kprotocolinfo_tdecore.cpp b/tdecore/kprotocolinfo_tdecore.cpp
index 02976616e..088ea0363 100644
--- a/tdecore/kprotocolinfo_tdecore.cpp
+++ b/tdecore/kprotocolinfo_tdecore.cpp
@@ -403,7 +403,7 @@ TQString KProtocolInfo::config( const TQString& _protocol )
if ( !prot )
return TQString::null;
- return TQString("kio_%1rc").arg(prot->m_config);
+ return TQString("tdeio_%1rc").arg(prot->m_config);
}
int KProtocolInfo::maxSlaves( const TQString& _protocol )
diff --git a/tdecore/ksimpledirwatch.cpp b/tdecore/ksimpledirwatch.cpp
index d961d4657..8454c7a74 100644
--- a/tdecore/ksimpledirwatch.cpp
+++ b/tdecore/ksimpledirwatch.cpp
@@ -1377,7 +1377,7 @@ bool KSimpleDirWatchPrivate::isNoisyFile( const char * filename )
if (strncmp(filename, ".X.err", 6) == 0) return true;
if (strncmp(filename, ".xsession-errors", 16) == 0) return true;
// fontconfig updates the cache on every KDE app start
- // (inclusive kio_thumbnail slaves)
+ // (inclusive tdeio_thumbnail slaves)
if (strncmp(filename, ".fonts.cache", 12) == 0) return true;
}