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/ebrowsing/main.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/main.cpp')
-rw-r--r-- | kcontrol/ebrowsing/main.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kcontrol/ebrowsing/main.cpp b/kcontrol/ebrowsing/main.cpp index 7e259a26b..9eeec46e1 100644 --- a/kcontrol/ebrowsing/main.cpp +++ b/kcontrol/ebrowsing/main.cpp @@ -41,7 +41,7 @@ K_EXPORT_COMPONENT_FACTORY( kcm_kurifilt, KURIFactory("kcmkurifilt") ) class FilterOptions; KURIFilterModule::KURIFilterModule(TQWidget *parent, const char *name, const TQStringList &) - :KCModule(KURIFactory::instance(), parent, name) + :TDECModule(KURIFactory::instance(), parent, name) { filter = KURIFilter::self(); @@ -66,11 +66,11 @@ KURIFilterModule::KURIFilterModule(TQWidget *parent, const char *name, const TQS modules.setAutoDelete(true); - TQMap<TQString,KCModule*> helper; + TQMap<TQString,TDECModule*> helper; TQPtrListIterator<KURIFilterPlugin> it = filter->pluginsIterator(); for (; it.current(); ++it) { - KCModule *module = it.current()->configModule(this, 0); + TDECModule *module = it.current()->configModule(this, 0); if (module) { modules.append(module); @@ -83,7 +83,7 @@ KURIFilterModule::KURIFilterModule(TQWidget *parent, const char *name, const TQS { TQTabWidget *tab = new TQTabWidget(this); - TQMapIterator<TQString,KCModule*> it2; + TQMapIterator<TQString,TDECModule*> it2; for (it2 = helper.begin(); it2 != helper.end(); ++it2) { tab->addTab(it2.data(), it2.key()); @@ -103,7 +103,7 @@ KURIFilterModule::KURIFilterModule(TQWidget *parent, const char *name, const TQS void KURIFilterModule::load() { - TQPtrListIterator<KCModule> it(modules); + TQPtrListIterator<TDECModule> it(modules); for (; it.current(); ++it) { it.current()->load(); @@ -112,7 +112,7 @@ void KURIFilterModule::load() void KURIFilterModule::save() { - TQPtrListIterator<KCModule> it(modules); + TQPtrListIterator<TDECModule> it(modules); for (; it.current(); ++it) { it.current()->save(); @@ -121,7 +121,7 @@ void KURIFilterModule::save() void KURIFilterModule::defaults() { - TQPtrListIterator<KCModule> it(modules); + TQPtrListIterator<TDECModule> it(modules); for (; it.current(); ++it) { it.current()->defaults(); |