summaryrefslogtreecommitdiffstats
path: root/ksvg/ecma/ksvg_ecma.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:23:46 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:23:46 +0000
commiteba47f8f0637f451e21348187591e1f1fd58ac74 (patch)
tree448f10b95c656604acc331a3236c1e59bde5c1ad /ksvg/ecma/ksvg_ecma.h
parentc7e8736c69373f48b0401319757c742e8607431a (diff)
downloadtdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz
tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksvg/ecma/ksvg_ecma.h')
-rw-r--r--ksvg/ecma/ksvg_ecma.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/ksvg/ecma/ksvg_ecma.h b/ksvg/ecma/ksvg_ecma.h
index 7c236454..ab58f67a 100644
--- a/ksvg/ecma/ksvg_ecma.h
+++ b/ksvg/ecma/ksvg_ecma.h
@@ -21,7 +21,7 @@
#ifndef KSVGEcma_H
#define KSVGEcma_H
-#include <qptrlist.h>
+#include <tqptrlist.h>
#include "ksvg_bridge.h"
@@ -49,7 +49,7 @@ namespace KSVG
class SVGDOMNodeBridge;
}
-class QVariant;
+class TQVariant;
class KSVGEcmaEventListener;
class KSVGScriptInterpreter;
@@ -63,7 +63,7 @@ namespace KSVG
KJS::Value getDOMEvent(KJS::ExecState *, KSVG::SVGEventImpl *);
KJS::Value getString(DOM::DOMString);
- QVariant valueToVariant(KJS::ExecState *, const KJS::Value &);
+ TQVariant valueToVariant(KJS::ExecState *, const KJS::Value &);
DOM::Node toNode(const KJS::Value &);
@@ -88,7 +88,7 @@ public:
KSVGScriptInterpreter *interpreter() { return m_interpreter; }
KSVG::SVGEventListener *createEventListener(DOM::DOMString type);
- QString valueOfEventListener(KSVG::SVGEventListener *listener) const;
+ TQString valueOfEventListener(KSVG::SVGEventListener *listener) const;
void addEventListener(KSVGEcmaEventListener *listener);
void removeEventListener(KSVGEcmaEventListener *listener);
bool hasEventListeners();
@@ -96,7 +96,7 @@ public:
void finishedWithEvent(KSVG::SVGEventImpl *event);
KJS::Value getUrl(KJS::ExecState *exec, ::KURL url);
- void postUrl(KJS::ExecState *exec, ::KURL url, const QString &data, const QString &mimeType, const QString &contentEncoding, KJS::Object &callBackFunction);
+ void postUrl(KJS::ExecState *exec, ::KURL url, const TQString &data, const TQString &mimeType, const TQString &contentEncoding, KJS::Object &callBackFunction);
private:
bool m_init, m_hasListeners;
@@ -105,7 +105,7 @@ private:
KSVG::Window *m_window;
KSVGScriptInterpreter *m_interpreter;
- QPtrList<KSVGEcmaEventListener> m_ecmaEventListeners;
+ TQPtrList<KSVGEcmaEventListener> m_ecmaEventListeners;
};