diff options
Diffstat (limited to 'konq-plugins/domtreeviewer/domtreeview.cpp')
-rw-r--r-- | konq-plugins/domtreeviewer/domtreeview.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/konq-plugins/domtreeviewer/domtreeview.cpp b/konq-plugins/domtreeviewer/domtreeview.cpp index 15c7d6a..5b24e9d 100644 --- a/konq-plugins/domtreeviewer/domtreeview.cpp +++ b/konq-plugins/domtreeviewer/domtreeview.cpp @@ -52,7 +52,7 @@ #include <keditcl.h> #include <kfiledialog.h> #include <kglobalsettings.h> -#include <khtml_part.h> +#include <tdehtml_part.h> #include <klineedit.h> #include <klistview.h> #include <klocale.h> @@ -339,7 +339,7 @@ void DOMTreeView::addElement ( const DOM::Node &node, DOMListViewItem *cur_item void DOMTreeView::highlightHTML(DOMListViewItem *cur_item, const TQString &nodeName) { - /* This is slow. I could make it O(1) be using the tokenizer of khtml but I don't + /* This is slow. I could make it O(1) be using the tokenizer of tdehtml but I don't * think it's worth it. */ @@ -581,7 +581,7 @@ void DOMTreeView::saveRecursive(const DOM::Node &pNode, int indent) if ( !element.isNull() ) { if (nodeName.at(0)=='-') { - /* Don't save khtml internal tags '-konq..' + /* Don't save tdehtml internal tags '-konq..' * Approximating it with <DIV> */ text += "<DIV> <!-- -KONG_BLOCK -->"; |