summaryrefslogtreecommitdiffstats
path: root/konq-plugins/searchbar/searchbar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'konq-plugins/searchbar/searchbar.cpp')
-rw-r--r--konq-plugins/searchbar/searchbar.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/konq-plugins/searchbar/searchbar.cpp b/konq-plugins/searchbar/searchbar.cpp
index 7542a0f..e6c1830 100644
--- a/konq-plugins/searchbar/searchbar.cpp
+++ b/konq-plugins/searchbar/searchbar.cpp
@@ -24,7 +24,7 @@
#include <dcopclient.h>
#include <kapplication.h>
#include <kaction.h>
-#include <kconfig.h>
+#include <tdeconfig.h>
#include <kdebug.h>
#include <kdesktopfile.h>
#include <kgenericfactory.h>
@@ -40,7 +40,7 @@
#include <kstandarddirs.h>
#include <kurifilter.h>
-#include <kio/job.h>
+#include <tdeio/job.h>
#include <tdeparts/mainwindow.h>
#include <tdeparts/partmanager.h>
@@ -448,13 +448,13 @@ void SearchBarPlugin::selectSearchEngines()
{
TDEProcess *process = new TDEProcess;
- *process << "kcmshell" << "ebrowsing";
+ *process << "tdecmshell" << "ebrowsing";
connect(process, TQT_SIGNAL(processExited(TDEProcess *)), TQT_SLOT(searchEnginesSelected(TDEProcess *)));
if(!process->start())
{
- kdDebug(1202) << "Couldn't invoke kcmshell." << endl;
+ kdDebug(1202) << "Couldn't invoke tdecmshell." << endl;
delete process;
}
}