summaryrefslogtreecommitdiffstats
path: root/tdehtml/test_regression.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/test_regression.h
parent72eecb041bf15bf64b748fc062d55f6ec860ac60 (diff)
downloadtdelibs-7427e438358d44c37e3c8b0a9cfbb225ffd60e79.tar.gz
tdelibs-7427e438358d44c37e3c8b0a9cfbb225ffd60e79.zip
Rename KHTML and kiobuffer
Diffstat (limited to 'tdehtml/test_regression.h')
-rw-r--r--tdehtml/test_regression.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/tdehtml/test_regression.h b/tdehtml/test_regression.h
index 74f56cc72..b6791bd32 100644
--- a/tdehtml/test_regression.h
+++ b/tdehtml/test_regression.h
@@ -40,12 +40,12 @@ class PartMonitor : public TQObject
{
Q_OBJECT
public:
- PartMonitor(KHTMLPart *_part);
+ PartMonitor(TDEHTMLPart *_part);
~PartMonitor();
void waitForCompletion();
static PartMonitor* sm_highestMonitor;
bool m_completed;
- KHTMLPart *m_part;
+ TDEHTMLPart *m_part;
int m_timer_waits;
TQTimer *m_timeout_timer;
public slots:
@@ -87,31 +87,31 @@ private:
/**
* @internal
*/
-class KHTMLPartObject : public KJS::ObjectImp
+class TDEHTMLPartObject : public KJS::ObjectImp
{
public:
- KHTMLPartObject(KJS::ExecState *exec, KHTMLPart *_part);
+ TDEHTMLPartObject(KJS::ExecState *exec, TDEHTMLPart *_part);
virtual KJS::Value get(KJS::ExecState *exec, const KJS::Identifier &propertyName) const;
private:
- KHTMLPart *m_part;
+ TDEHTMLPart *m_part;
};
/**
* @internal
*/
-class KHTMLPartFunction : public KJS::ObjectImp
+class TDEHTMLPartFunction : public KJS::ObjectImp
{
public:
- KHTMLPartFunction(KJS::ExecState *exec, KHTMLPart *_part, int _id, int length);
+ TDEHTMLPartFunction(KJS::ExecState *exec, TDEHTMLPart *_part, int _id, int length);
bool implementsCall() const;
KJS::Value call(KJS::ExecState *exec, KJS::Object &thisObj, const KJS::List &args);
enum { OpenPage, OpenPageAsUrl, Begin, Write, End, ExecuteScript, ProcessEvents };
private:
- KHTMLPart *m_part;
+ TDEHTMLPart *m_part;
int id;
};
@@ -127,14 +127,14 @@ class RegressionTest : public TQObject
Q_OBJECT
public:
- RegressionTest(KHTMLPart *part, const TQString &baseDir, const TQString &outputDir,
+ RegressionTest(TDEHTMLPart *part, const TQString &baseDir, const TQString &outputDir,
bool _genOutput, bool runJS, bool runHTML);
~RegressionTest();
enum OutputType { DOMTree, RenderTree };
TQString getPartOutput( OutputType type );
- void getPartDOMOutput( TQTextStream &outputStream, KHTMLPart* part, uint indent );
- void dumpRenderTree( TQTextStream &outputStream, KHTMLPart* part );
+ void getPartDOMOutput( TQTextStream &outputStream, TDEHTMLPart* part, uint indent );
+ void dumpRenderTree( TQTextStream &outputStream, TDEHTMLPart* part );
void testStaticFile(const TQString& filename);
void testJSFile(const TQString& filename);
enum CheckResult { Failure = 0, Success = 1, Ignored = 2 };
@@ -152,7 +152,7 @@ public:
void doJavascriptReport( const TQString &test );
void doFailureReport( const TQString& test, int failures );
- KHTMLPart *m_part;
+ TDEHTMLPart *m_part;
TQString m_baseDir;
TQString m_outputDir;
bool m_genOutput;