summaryrefslogtreecommitdiffstats
path: root/konq-plugins/searchbar
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 21:01:57 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 21:01:57 -0600
commita5a7573f3597f76e3cf9ebfb5a38416906289ff3 (patch)
treebeabf7411b6bfeb386bea8016fa48eebf61db192 /konq-plugins/searchbar
parentf21b0182707822a0aeaedd00578eb18ce191c47d (diff)
downloadtdeaddons-a5a7573f3597f76e3cf9ebfb5a38416906289ff3.tar.gz
tdeaddons-a5a7573f3597f76e3cf9ebfb5a38416906289ff3.zip
Rename kiobuffer and KHTML
Diffstat (limited to 'konq-plugins/searchbar')
-rw-r--r--konq-plugins/searchbar/Makefile.am2
-rw-r--r--konq-plugins/searchbar/searchbar.cpp2
-rw-r--r--konq-plugins/searchbar/searchbar.h6
3 files changed, 5 insertions, 5 deletions
diff --git a/konq-plugins/searchbar/Makefile.am b/konq-plugins/searchbar/Makefile.am
index 3a4c1b5..04e33fa 100644
--- a/konq-plugins/searchbar/Makefile.am
+++ b/konq-plugins/searchbar/Makefile.am
@@ -5,7 +5,7 @@ INCLUDES = $(all_includes)
kde_module_LTLIBRARIES = libsearchbarplugin.la
libsearchbarplugin_la_SOURCES = searchbar.cpp
-libsearchbarplugin_la_LIBADD = $(LIB_KHTML)
+libsearchbarplugin_la_LIBADD = $(LIB_TDEHTML)
libsearchbarplugin_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN)
pluginsdir = $(kde_datadir)/konqueror/kpartplugins
diff --git a/konq-plugins/searchbar/searchbar.cpp b/konq-plugins/searchbar/searchbar.cpp
index e6c1830..7e2ed07 100644
--- a/konq-plugins/searchbar/searchbar.cpp
+++ b/konq-plugins/searchbar/searchbar.cpp
@@ -515,7 +515,7 @@ void SearchBarPlugin::configurationChanged()
void SearchBarPlugin::partChanged(KParts::Part *newPart)
{
- m_part = ::tqqt_cast<KHTMLPart*>(newPart);
+ m_part = ::tqqt_cast<TDEHTMLPart*>(newPart);
//Delay since when destroying tabs part 0 gets activated for a bit, before the proper part
TQTimer::singleShot(0, this, TQT_SLOT(updateComboVisibility()));
diff --git a/konq-plugins/searchbar/searchbar.h b/konq-plugins/searchbar/searchbar.h
index e52f482..a1423f8 100644
--- a/konq-plugins/searchbar/searchbar.h
+++ b/konq-plugins/searchbar/searchbar.h
@@ -31,7 +31,7 @@
#include <tqpixmap.h>
#include <tqstring.h>
-class KHTMLPart;
+class TDEHTMLPart;
class TDEProcess;
class TQPopupMenu;
class TQTimer;
@@ -68,7 +68,7 @@ class SearchBarCombo : public KHistoryCombo
/**
* Sets whether the plugin is active. It can be inactive
- * in case the current Konqueror part isn't a KHTML part.
+ * in case the current Konqueror part isn't a TDEHTML part.
*/
void setPluginActive(bool pluginActive);
@@ -174,7 +174,7 @@ class SearchBarPlugin : public KParts::Plugin
void nextSearchEntry();
void previousSearchEntry();
- TQGuardedPtr<KHTMLPart> m_part;
+ TQGuardedPtr<TDEHTMLPart> m_part;
SearchBarCombo *m_searchCombo;
KWidgetAction *m_searchComboAction;
TQPopupMenu *m_popupMenu;