Fix a few remaining references to kio_

pull/2/head
Timothy Pearson 11 years ago
parent 75e0b34e46
commit 8103f3767e

@ -57,18 +57,18 @@
// tdm, kcontrol // tdm, kcontrol
#cmakedefine HAVE_GETIFADDRS 1 #cmakedefine HAVE_GETIFADDRS 1
// kio_fish // tdeio_fish
#cmakedefine HAVE_STROPTS 1 #cmakedefine HAVE_STROPTS 1
#cmakedefine HAVE_LIBUTIL_H 1 #cmakedefine HAVE_LIBUTIL_H 1
#cmakedefine HAVE_UTIL_H 1 #cmakedefine HAVE_UTIL_H 1
#cmakedefine HAVE_PTY_H 1 #cmakedefine HAVE_PTY_H 1
#cmakedefine HAVE_OPENPTY 1 #cmakedefine HAVE_OPENPTY 1
// kio_man // tdeio_man
#cmakedefine HAVE_UNISTD_H 1 #cmakedefine HAVE_UNISTD_H 1
#cmakedefine HAVE_STRING_H 1 #cmakedefine HAVE_STRING_H 1
// kio_smtp, ksysguard // tdeio_smtp, ksysguard
#cmakedefine kde_socklen_t @kde_socklen_t@ #cmakedefine kde_socklen_t @kde_socklen_t@
// tdefile_media // tdefile_media

@ -17,7 +17,7 @@ protocol to provide standardized access to Multimedia retrieval software.
See <ulink url="http://www.mrml.net">http://www.mrml.net</ulink> for more information. See <ulink url="http://www.mrml.net">http://www.mrml.net</ulink> for more information.
</para> </para>
<para>kio_mrml is used for the Image Finding feature in &tde;</para> <para>tdeio_mrml is used for the Image Finding feature in &tde;</para>
<para>&eg; type <userinput>mrml:/</userinput> or <userinput>mrml:/some.other.server</userinput> in &konqueror; to start searching for <para>&eg; type <userinput>mrml:/</userinput> or <userinput>mrml:/some.other.server</userinput> in &konqueror; to start searching for
images. images.

@ -111,7 +111,7 @@ bool KPrivacyManager::clearFormCompletion() const
bool KPrivacyManager::clearWebCache() const bool KPrivacyManager::clearWebCache() const
{ {
TDEProcess process; TDEProcess process;
process << "kio_http_cache_cleaner" << "--clear-all"; process << "tdeio_http_cache_cleaner" << "--clear-all";
return process.start(TDEProcess::DontCare); return process.start(TDEProcess::DontCare);
} }

@ -276,7 +276,7 @@ KHC::View
--------- ---------
KHC::View inherits TDEHTMLPart and does the actual job of showing some sort of KHC::View inherits TDEHTMLPart and does the actual job of showing some sort of
document. Most importantly, it has a slot which passes it a KURL pointing to a document. Most importantly, it has a slot which passes it a KURL pointing to a
document to show. KHC::View will invoke kio_help if necessary (if the URL's document to show. KHC::View will invoke tdeio_help if necessary (if the URL's
protocol == "help") by itself and otherwise use the plain URL. protocol == "help") by itself and otherwise use the plain URL.
# TODO: Things I didn't really think about yet: the interface between the # TODO: Things I didn't really think about yet: the interface between the

@ -167,7 +167,7 @@ KRemoteEncodingPlugin::slotAboutToShow()
void void
KRemoteEncodingPlugin::slotItemSelected(int id) KRemoteEncodingPlugin::slotItemSelected(int id)
{ {
TDEConfig config(("kio_" + m_currentURL.protocol() + "rc").latin1()); TDEConfig config(("tdeio_" + m_currentURL.protocol() + "rc").latin1());
TQString host = m_currentURL.host(); TQString host = m_currentURL.host();
if (!m_menu->popupMenu()->isItemChecked(id)) if (!m_menu->popupMenu()->isItemChecked(id))
@ -188,7 +188,7 @@ KRemoteEncodingPlugin::slotDefault()
{ {
// We have no choice but delete all higher domain level // We have no choice but delete all higher domain level
// settings here since it affects what will be matched. // settings here since it affects what will be matched.
TDEConfig config(("kio_" + m_currentURL.protocol() + "rc").latin1()); TDEConfig config(("tdeio_" + m_currentURL.protocol() + "rc").latin1());
TQStringList partList = TQStringList::split('.', m_currentURL.host(), false); TQStringList partList = TQStringList::split('.', m_currentURL.host(), false);
if (!partList.isEmpty()) if (!partList.isEmpty())

@ -185,7 +185,7 @@ ProcessList::ProcessList(TQWidget *parent, const char* name)
aliases.insert("tdesud", new TQString("kdeapp")); aliases.insert("tdesud", new TQString("kdeapp"));
aliases.insert("tdm", new TQString("kdeapp")); aliases.insert("tdm", new TQString("kdeapp"));
aliases.insert("khotkeys", new TQString("kdeapp")); aliases.insert("khotkeys", new TQString("kdeapp"));
aliases.insert("kio_file", new TQString("kdeapp")); aliases.insert("tdeio_file", new TQString("kdeapp"));
aliases.insert("tdeio_uiserver", new TQString("kdeapp")); aliases.insert("tdeio_uiserver", new TQString("kdeapp"));
aliases.insert("tdelauncher", new TQString("kdeapp")); aliases.insert("tdelauncher", new TQString("kdeapp"));
aliases.insert("ksmserver", new TQString("kdeapp")); aliases.insert("ksmserver", new TQString("kdeapp"));

@ -512,7 +512,7 @@ void KNewMenu::slotResult( TDEIO::Job * job )
} }
else else
{ {
// Normal (local) file. Need to "touch" it, kio_file copied the mtime. // Normal (local) file. Need to "touch" it, tdeio_file copied the mtime.
(void) ::utime( TQFile::encodeName( destURL.path() ), 0 ); (void) ::utime( TQFile::encodeName( destURL.path() ), 0 );
} }
} }

Loading…
Cancel
Save