diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:15:08 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:15:08 -0600 |
commit | 39177c1528006932b00136d34cf022434df73d72 (patch) | |
tree | a0791bebede3e7eb454ac2268a14c4e8a157de6d /konq-plugins/domtreeviewer/domtreeview.cpp | |
parent | 2a74bca8c834c4d4f391c70de8fdfa12a7cc972c (diff) | |
download | tdeaddons-39177c1528006932b00136d34cf022434df73d72.tar.gz tdeaddons-39177c1528006932b00136d34cf022434df73d72.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
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 -->"; |