summaryrefslogtreecommitdiffstats
path: root/plugins/search
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/search')
-rw-r--r--plugins/search/Makefile.am2
-rw-r--r--plugins/search/htmlpart.cpp2
-rw-r--r--plugins/search/htmlpart.h2
-rw-r--r--plugins/search/searchwidget.cpp2
-rw-r--r--plugins/search/searchwidget.h2
5 files changed, 5 insertions, 5 deletions
diff --git a/plugins/search/Makefile.am b/plugins/search/Makefile.am
index 396a196..1cbb3ef 100644
--- a/plugins/search/Makefile.am
+++ b/plugins/search/Makefile.am
@@ -8,7 +8,7 @@ ktsearchplugin_la_SOURCES = searchplugin.cpp htmlpart.cpp searchbar.ui \
# Libs needed by the plugin
ktsearchplugin_la_LIBADD = ../../libktorrent/libktorrent.la \
- $(LIB_KHTML) $(LIB_KPARTS) $(LIB_QT) \
+ $(LIB_TDEHTML) $(LIB_KPARTS) $(LIB_QT) \
$(LIB_TDECORE) $(LIB_TDEUI) $(LIB_KFILE)
# LD flags for the plugin
diff --git a/plugins/search/htmlpart.cpp b/plugins/search/htmlpart.cpp
index 1ce0d5d..3179650 100644
--- a/plugins/search/htmlpart.cpp
+++ b/plugins/search/htmlpart.cpp
@@ -37,7 +37,7 @@ namespace kt
{
HTMLPart::HTMLPart(TQWidget *parent)
- : KHTMLPart(parent)
+ : TDEHTMLPart(parent)
{
setJScriptEnabled(true);
setJavaEnabled(true);
diff --git a/plugins/search/htmlpart.h b/plugins/search/htmlpart.h
index b1b9273..091c82f 100644
--- a/plugins/search/htmlpart.h
+++ b/plugins/search/htmlpart.h
@@ -34,7 +34,7 @@ namespace kt
/**
@author Joris Guisson
*/
- class HTMLPart : public KHTMLPart
+ class HTMLPart : public TDEHTMLPart
{
Q_OBJECT
diff --git a/plugins/search/searchwidget.cpp b/plugins/search/searchwidget.cpp
index 6ae19a9..61f871a 100644
--- a/plugins/search/searchwidget.cpp
+++ b/plugins/search/searchwidget.cpp
@@ -140,7 +140,7 @@ namespace kt
void SearchWidget::onFrameAdded(KParts::Part* p)
{
- KHTMLPart* frame = dynamic_cast<KHTMLPart*>(p);
+ TDEHTMLPart* frame = dynamic_cast<TDEHTMLPart*>(p);
if (frame)
{
connect(frame,TQT_SIGNAL(popupMenu(const TQString&, const TQPoint& )),
diff --git a/plugins/search/searchwidget.h b/plugins/search/searchwidget.h
index e7d14d6..c48be71 100644
--- a/plugins/search/searchwidget.h
+++ b/plugins/search/searchwidget.h
@@ -43,7 +43,7 @@ namespace kt
/**
@author Joris Guisson
- Widget which shows a KHTML window with the users search in it
+ Widget which shows a TDEHTML window with the users search in it
*/
class SearchWidget : public TQWidget
{