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/konqueror.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/konqueror.cpp')
-rw-r--r-- | kcontrol/performance/konqueror.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kcontrol/performance/konqueror.cpp b/kcontrol/performance/konqueror.cpp index b9edc46f0..3c8bb6db3 100644 --- a/kcontrol/performance/konqueror.cpp +++ b/kcontrol/performance/konqueror.cpp @@ -96,7 +96,7 @@ void Konqueror::preload_count_changed( int count ) void Konqueror::load( bool useDefaults ) { - KConfig cfg( "konquerorrc", true ); + TDEConfig cfg( "konquerorrc", true ); cfg.setReadDefaults( useDefaults ); cfg.setGroup( "Reusing" ); allowed_parts = cfg.readEntry( "SafeParts", "SAFE" ); @@ -113,7 +113,7 @@ void Konqueror::load( bool useDefaults ) void Konqueror::save() { - KConfig cfg( "konquerorrc" ); + TDEConfig cfg( "konquerorrc" ); cfg.setGroup( "Reusing" ); if( rb_always_reuse->isChecked()) allowed_parts = "ALL"; |