summaryrefslogtreecommitdiffstats
path: root/tdehtml/xml/xml_tokenizer.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 15:54:26 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 15:54:26 -0600
commit7427e438358d44c37e3c8b0a9cfbb225ffd60e79 (patch)
treed977f1d23d324f23aadee0ad50acb94d7436ba80 /tdehtml/xml/xml_tokenizer.h
parent72eecb041bf15bf64b748fc062d55f6ec860ac60 (diff)
downloadtdelibs-7427e438358d44c37e3c8b0a9cfbb225ffd60e79.tar.gz
tdelibs-7427e438358d44c37e3c8b0a9cfbb225ffd60e79.zip
Rename KHTML and kiobuffer
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);