summaryrefslogtreecommitdiffstats
path: root/konq-plugins/searchbar
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 01:00:38 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 01:00:38 -0600
commit4bc3dcd8cbc23e1470e121e25a83d57c22e61b26 (patch)
tree7d379893635b06789888944241a976a4f2b440ab /konq-plugins/searchbar
parent08a66075486dc740840cfb817bf0ca301c6f0385 (diff)
downloadtdeaddons-4bc3dcd8cbc23e1470e121e25a83d57c22e61b26.tar.gz
tdeaddons-4bc3dcd8cbc23e1470e121e25a83d57c22e61b26.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'konq-plugins/searchbar')
-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;
}
}