diff options
Diffstat (limited to 'src/knemod/knemodaemon.cpp')
-rw-r--r-- | src/knemod/knemodaemon.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/knemod/knemodaemon.cpp b/src/knemod/knemodaemon.cpp index 2957dc1..fba66c1 100644 --- a/src/knemod/knemodaemon.cpp +++ b/src/knemod/knemodaemon.cpp @@ -56,7 +56,7 @@ KNemoDaemon::KNemoDaemon( const TQCString& name ) readConfig(); // select the backend from the config file - KConfig* config = new KConfig( "knemorc", true ); + TDEConfig* config = new TDEConfig( "knemorc", true ); config->setGroup( "General" ); mBackendName = config->readEntry( "Backend", "Nettools" ); delete config; @@ -103,7 +103,7 @@ KNemoDaemon::~KNemoDaemon() void KNemoDaemon::readConfig() { - KConfig* config = new KConfig( "knemorc", true ); + TDEConfig* config = new TDEConfig( "knemorc", true ); config->setGroup( "General" ); mGeneralData.pollInterval = config->readNumEntry( "PollInterval", 1 ); @@ -183,7 +183,7 @@ void KNemoDaemon::reparseConfiguration() { // Read the settings from the config file. TQDict<InterfaceSettings> settingsDict; - KConfig* config = new KConfig( "knemorc", false ); + TDEConfig* config = new TDEConfig( "knemorc", false ); config->setGroup( "General" ); mGeneralData.pollInterval = config->readNumEntry( "PollInterval", 1 ); |