summaryrefslogtreecommitdiffstats
path: root/kmrml/kmrml/lib/kmrml_config.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmrml/kmrml/lib/kmrml_config.cpp')
-rw-r--r--kmrml/kmrml/lib/kmrml_config.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kmrml/kmrml/lib/kmrml_config.cpp b/kmrml/kmrml/lib/kmrml_config.cpp
index 63bc5e8a..be408bc2 100644
--- a/kmrml/kmrml/lib/kmrml_config.cpp
+++ b/kmrml/kmrml/lib/kmrml_config.cpp
@@ -54,13 +54,13 @@ const int DEFAULT_PORT = 12789;
Config::Config()
{
- m_ownConfig = new KConfig( "kio_mrmlrc", false, false );
+ m_ownConfig = new TDEConfig( "kio_mrmlrc", false, false );
m_config = m_ownConfig;
init();
}
-Config::Config( KConfig *config )
+Config::Config( TDEConfig *config )
: m_config( config ),
m_ownConfig( 0L )
{
@@ -98,7 +98,7 @@ bool Config::sync()
// mrmlsearch binary can also use this class)
// tell the ioslaves about the new configuration
// if ( notifySlaves )
-// KIO::SlaveConfig::self()->reset();
+// TDEIO::SlaveConfig::self()->reset();
}
void Config::setDefaultHost( const TQString& host )
@@ -117,7 +117,7 @@ ServerSettings Config::settingsForLocalHost() const
ServerSettings Config::settingsForHost( const TQString& host ) const
{
- KConfigGroup config( m_config, settingsGroup( host ) );
+ TDEConfigGroup config( m_config, settingsGroup( host ) );
ServerSettings settings;
settings.host = host;