diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:30:47 -0600 | 
|---|---|---|
| committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:30:47 -0600 | 
| commit | cc74f360bb40da3d79f58048f8e8611804980aa6 (patch) | |
| tree | c4385d2c16b904757b1c8bb998a4aec6993373f7 /kcontrol/performance/system.cpp | |
| parent | 79b21d47bce1ee428affc97534cd8b257232a871 (diff) | |
| download | tdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.tar.gz tdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.zip | |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kcontrol/performance/system.cpp')
| -rw-r--r-- | kcontrol/performance/system.cpp | 4 | 
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());      } | 
