summaryrefslogtreecommitdiffstats
path: root/kcontrol/performance/system.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kcontrol/performance/system.cpp')
-rw-r--r--kcontrol/performance/system.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kcontrol/performance/system.cpp b/kcontrol/performance/system.cpp
index 001e00abf..500178002 100644
--- a/kcontrol/performance/system.cpp
+++ b/kcontrol/performance/system.cpp
@@ -57,7 +57,7 @@ SystemWidget::SystemWidget( TQWidget* parent_P )
void SystemWidget::load(bool useDefaults )
{
- KConfig cfg( "kdedrc", true );
+ TDEConfig cfg( "kdedrc", true );
cfg.setReadDefaults( useDefaults );
cfg.setGroup( "General" );
cb_disable_kbuildsycoca->setChecked( cfg.readBoolEntry( "DelayedCheck", false ));
@@ -65,7 +65,7 @@ void SystemWidget::load(bool useDefaults )
void SystemWidget::save()
{
- KConfig cfg( "kdedrc" );
+ TDEConfig cfg( "kdedrc" );
cfg.setGroup( "General" );
cfg.writeEntry( "DelayedCheck", cb_disable_kbuildsycoca->isChecked());
}