diff options
author | Timothy Pearson <[email protected]> | 2013-01-25 00:30:47 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-25 00:30:47 -0600 |
commit | cc74f360bb40da3d79f58048f8e8611804980aa6 (patch) | |
tree | c4385d2c16b904757b1c8bb998a4aec6993373f7 /kcontrol/ebrowsing/plugins/ikws/ikwsopts.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/ebrowsing/plugins/ikws/ikwsopts.cpp')
-rw-r--r-- | kcontrol/ebrowsing/plugins/ikws/ikwsopts.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kcontrol/ebrowsing/plugins/ikws/ikwsopts.cpp b/kcontrol/ebrowsing/plugins/ikws/ikwsopts.cpp index 2c04835c9..3073250f7 100644 --- a/kcontrol/ebrowsing/plugins/ikws/ikwsopts.cpp +++ b/kcontrol/ebrowsing/plugins/ikws/ikwsopts.cpp @@ -76,7 +76,7 @@ private: }; FilterOptions::FilterOptions(TDEInstance *instance, TQWidget *parent, const char *name) - :KCModule(instance, parent, name) + :TDECModule(instance, parent, name) { TQVBoxLayout *mainLayout = new TQVBoxLayout( this, KDialog::marginHint(), KDialog::spacingHint()); @@ -114,7 +114,7 @@ void FilterOptions::load( bool useDefaults ) // Clear state first. m_dlg->lvSearchProviders->clear(); - KConfig config( KURISearchFilterEngine::self()->name() + "rc", false, false ); + TDEConfig config( KURISearchFilterEngine::self()->name() + "rc", false, false ); config.setReadDefaults( useDefaults ); @@ -207,7 +207,7 @@ void FilterOptions::setDelimiter (char sep) void FilterOptions::save() { - KConfig config( KURISearchFilterEngine::self()->name() + "rc", false, false ); + TDEConfig config( KURISearchFilterEngine::self()->name() + "rc", false, false ); config.setGroup("General"); config.writeEntry("EnableWebShortcuts", m_dlg->cbEnableShortcuts->isChecked()); |