summaryrefslogtreecommitdiffstats
path: root/tdehtml/xml/xml_tokenizer.h
diff options
context:
space:
mode:
Diffstat (limited to 'tdehtml/xml/xml_tokenizer.h')
-rw-r--r--tdehtml/xml/xml_tokenizer.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/tdehtml/xml/xml_tokenizer.h b/tdehtml/xml/xml_tokenizer.h
index 49a9c970d..f89e5eb2f 100644
--- a/tdehtml/xml/xml_tokenizer.h
+++ b/tdehtml/xml/xml_tokenizer.h
@@ -31,7 +31,7 @@
#include "misc/loader_client.h"
#include "misc/stringit.h"
-class KHTMLView;
+class TDEHTMLView;
namespace tdehtml {
class CachedObject;
@@ -51,7 +51,7 @@ namespace tdehtml {
class XMLHandler : public TQXmlDefaultHandler
{
public:
- XMLHandler(DOM::DocumentImpl *_doc, KHTMLView *_view);
+ XMLHandler(DOM::DocumentImpl *_doc, TDEHTMLView *_view);
virtual ~XMLHandler();
// return the error protocol if parsing failed
@@ -101,7 +101,7 @@ private:
private:
TQString errorProt;
DOM::DocumentImpl *m_doc;
- KHTMLView *m_view;
+ TDEHTMLView *m_view;
TQPtrStack<DOM::NodeImpl> m_nodes;
DOM::NodeImpl *m_rootNode;
@@ -162,7 +162,7 @@ private:
class XMLTokenizer : public Tokenizer, public tdehtml::CachedObjectClient
{
public:
- XMLTokenizer(DOM::DocumentImpl *, KHTMLView * = 0);
+ XMLTokenizer(DOM::DocumentImpl *, TDEHTMLView * = 0);
virtual ~XMLTokenizer();
virtual void begin();
virtual void write( const TokenizerString &str, bool );
@@ -178,7 +178,7 @@ public:
protected:
DOM::DocumentImpl *m_doc;
- KHTMLView *m_view;
+ TDEHTMLView *m_view;
void executeScripts();
void addScripts(DOM::NodeImpl *n);