diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-30 13:48:54 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-30 13:48:54 -0600 |
commit | 8103f3767e023c58049df75422bc4c87cedae1a2 (patch) | |
tree | 3cb869372e1cc84ae83cef208f08637326f2099b /konqueror/remoteencodingplugin | |
parent | 75e0b34e46f2a8b1e79e71343c612f6b951c12ad (diff) | |
download | tdebase-8103f3767e023c58049df75422bc4c87cedae1a2.tar.gz tdebase-8103f3767e023c58049df75422bc4c87cedae1a2.zip |
Fix a few remaining references to kio_
Diffstat (limited to 'konqueror/remoteencodingplugin')
-rw-r--r-- | konqueror/remoteencodingplugin/kremoteencodingplugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/konqueror/remoteencodingplugin/kremoteencodingplugin.cpp b/konqueror/remoteencodingplugin/kremoteencodingplugin.cpp index ec9d6ef2a..b4de7a003 100644 --- a/konqueror/remoteencodingplugin/kremoteencodingplugin.cpp +++ b/konqueror/remoteencodingplugin/kremoteencodingplugin.cpp @@ -167,7 +167,7 @@ KRemoteEncodingPlugin::slotAboutToShow() void 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(); if (!m_menu->popupMenu()->isItemChecked(id)) @@ -188,7 +188,7 @@ KRemoteEncodingPlugin::slotDefault() { // We have no choice but delete all higher domain level // 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); if (!partList.isEmpty()) |