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 add12c8..2957dc1 100644 --- a/src/knemod/knemodaemon.cpp +++ b/src/knemod/knemodaemon.cpp @@ -52,7 +52,7 @@ KNemoDaemon::KNemoDaemon( const TQCString& name ) mInstance( new TDEInstance( "knemo" ) ), mNotifyInstance( new KNotifyClient::Instance( mInstance ) ) { - KGlobal::locale()->insertCatalogue( "knemod" ); + TDEGlobal::locale()->insertCatalogue( "knemod" ); readConfig(); // select the backend from the config file @@ -108,7 +108,7 @@ void KNemoDaemon::readConfig() config->setGroup( "General" ); mGeneralData.pollInterval = config->readNumEntry( "PollInterval", 1 ); mGeneralData.saveInterval = config->readNumEntry( "SaveInterval", 60 ); - mGeneralData.statisticsDir = config->readEntry( "StatisticsDir", KGlobal::dirs()->saveLocation( "data", "knemo/" ) ); + mGeneralData.statisticsDir = config->readEntry( "StatisticsDir", TDEGlobal::dirs()->saveLocation( "data", "knemo/" ) ); mGeneralData.toolTipContent = config->readNumEntry( "ToolTipContent", 2 ); TQStrList list; int numEntries = config->readListEntry( "Interfaces", list ); @@ -188,7 +188,7 @@ void KNemoDaemon::reparseConfiguration() config->setGroup( "General" ); mGeneralData.pollInterval = config->readNumEntry( "PollInterval", 1 ); mGeneralData.saveInterval = config->readNumEntry( "SaveInterval", 60 ); - mGeneralData.statisticsDir = config->readEntry( "StatisticsDir", KGlobal::dirs()->saveLocation( "data", "knemo/" ) ); + mGeneralData.statisticsDir = config->readEntry( "StatisticsDir", TDEGlobal::dirs()->saveLocation( "data", "knemo/" ) ); mGeneralData.toolTipContent = config->readNumEntry( "ToolTipContent", 2 ); // restart the timer with the new interval |