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 /khelpcenter/htmlsearch/kcmhtmlsearch.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 'khelpcenter/htmlsearch/kcmhtmlsearch.cpp')
-rw-r--r-- | khelpcenter/htmlsearch/kcmhtmlsearch.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/khelpcenter/htmlsearch/kcmhtmlsearch.cpp b/khelpcenter/htmlsearch/kcmhtmlsearch.cpp index 7bb403b06..588be7142 100644 --- a/khelpcenter/htmlsearch/kcmhtmlsearch.cpp +++ b/khelpcenter/htmlsearch/kcmhtmlsearch.cpp @@ -35,7 +35,7 @@ KHTMLSearchConfig::KHTMLSearchConfig(TQWidget *parent, const char *name) - : KCModule(parent, name), indexProc(0) + : TDECModule(parent, name), indexProc(0) { TQVBoxLayout *vbox = new TQVBoxLayout(this, 5); @@ -253,7 +253,7 @@ void KHTMLSearchConfig::configChanged() void KHTMLSearchConfig::load() { - KConfig *config = new KConfig("khelpcenterrc", true); + TDEConfig *config = new TDEConfig("khelpcenterrc", true); config->setGroup("htdig"); htdigBin->lineEdit()->setText(config->readPathEntry("htdig", kapp->dirs()->findExe("htdig"))); @@ -281,7 +281,7 @@ void KHTMLSearchConfig::load() void KHTMLSearchConfig::save() { - KConfig *config= new KConfig("khelpcenterrc", false); + TDEConfig *config= new TDEConfig("khelpcenterrc", false); config->setGroup("htdig"); config->writePathEntry("htdig", htdigBin->lineEdit()->text()); @@ -362,7 +362,7 @@ void KHTMLSearchConfig::indexTerminated(TDEProcess *) extern "C" { - KDE_EXPORT KCModule *create_htmlsearch(TQWidget *parent, const char *name) + KDE_EXPORT TDECModule *create_htmlsearch(TQWidget *parent, const char *name) { TDEGlobal::locale()->insertCatalogue("kcmhtmlsearch"); return new KHTMLSearchConfig(parent, name); |