summaryrefslogtreecommitdiffstats
path: root/src/kcm
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/kcm
parent70dd1b53b7f8026acd164c6e7dca3c2dcde9dd18 (diff)
downloadknemo-ed6b24997e06a9a14d0f47cfbfafdd2473cf856d.tar.gz
knemo-ed6b24997e06a9a14d0f47cfbfafdd2473cf856d.zip
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'src/kcm')
-rw-r--r--src/kcm/configdialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kcm/configdialog.cpp b/src/kcm/configdialog.cpp
index 25ab899..5cfe220 100644
--- a/src/kcm/configdialog.cpp
+++ b/src/kcm/configdialog.cpp
@@ -75,7 +75,7 @@ ConfigDialog::ConfigDialog( TQWidget *parent, const char *name, const TQStringLi
mColorOutgoing( 0xFF7F08 ),
mColorBackground( 0x313031 )
{
- KGlobal::locale()->insertCatalogue("kcm_knemo");
+ TDEGlobal::locale()->insertCatalogue("kcm_knemo");
setupToolTipArray();
// fill the backends combobox
@@ -264,7 +264,7 @@ void ConfigDialog::load()
mDlg->tabWidgetConfiguration->setEnabled( startKNemo );
mDlg->numInputPollInterval->setValue( config->readNumEntry( "PollInterval", 1 ) );
mDlg->numInputSaveInterval->setValue( config->readNumEntry( "SaveInterval", 60 ) );
- mDlg->lineEditStatisticsDir->setText( config->readEntry( "StatisticsDir", KGlobal::dirs()->saveLocation( "data", "knemo/" ) ) );
+ mDlg->lineEditStatisticsDir->setText( config->readEntry( "StatisticsDir", TDEGlobal::dirs()->saveLocation( "data", "knemo/" ) ) );
mToolTipContent = config->readNumEntry( "ToolTipContent", 2 );
// select the backend from the config file
@@ -493,7 +493,7 @@ void ConfigDialog::defaults()
// Default misc settings
mDlg->numInputPollInterval->setValue( 1 );
mDlg->numInputSaveInterval->setValue( 60 );
- mDlg->lineEditStatisticsDir->setText( KGlobal::dirs()->saveLocation( "data", "knemo/" ) );
+ mDlg->lineEditStatisticsDir->setText( TDEGlobal::dirs()->saveLocation( "data", "knemo/" ) );
mDlg->comboBoxBackends->setCurrentItem( 0 );
mDlg->textLabelBackendDescription->setText( KCMRegistry[0].description );