summaryrefslogtreecommitdiffstats
path: root/src/knemod/knemodaemon.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-01-24 13:21:31 -0600
committerTimothy Pearson <[email protected]>2013-01-24 13:21:31 -0600
commited6b24997e06a9a14d0f47cfbfafdd2473cf856d (patch)
tree404af184ad8c33a68131f32e4554e79b1b16c581 /src/knemod/knemodaemon.cpp
parent70dd1b53b7f8026acd164c6e7dca3c2dcde9dd18 (diff)
downloadknemo-ed6b24997e06a9a14d0f47cfbfafdd2473cf856d.tar.gz
knemo-ed6b24997e06a9a14d0f47cfbfafdd2473cf856d.zip
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'src/knemod/knemodaemon.cpp')
-rw-r--r--src/knemod/knemodaemon.cpp6
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