summaryrefslogtreecommitdiffstats
path: root/src/kcm/configdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kcm/configdialog.cpp')
-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 );