diff options
Diffstat (limited to 'kjsembed/jsobjectproxy_imp.h')
-rw-r--r-- | kjsembed/jsobjectproxy_imp.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kjsembed/jsobjectproxy_imp.h b/kjsembed/jsobjectproxy_imp.h index b967c362..2c1cefb6 100644 --- a/kjsembed/jsobjectproxy_imp.h +++ b/kjsembed/jsobjectproxy_imp.h @@ -22,7 +22,7 @@ #ifndef KJSEMBEDJSOBJECTPROXYIMP_H #define KJSEMBEDJSOBJECTPROXYIMP_H -#include <qguardedptr.h> +#include <tqguardedptr.h> #include <kjs/interpreter.h> #include <kjsembed/jsproxy_imp.h> @@ -115,11 +115,11 @@ public: JSObjectProxyImp( KJS::ExecState *exec, int id, JSObjectProxy *parent ); JSObjectProxyImp( KJS::ExecState *exec, - int id, const QCString &name, JSObjectProxy *parent ); + int id, const TQCString &name, JSObjectProxy *parent ); JSObjectProxyImp( KJS::ExecState *exec, - int id, int sigid, const QCString &name, JSObjectProxy *parent ); + int id, int sigid, const TQCString &name, JSObjectProxy *parent ); JSObjectProxyImp( KJS::ExecState *exec, - int id, const char *ret, int sig, const QCString &name, JSObjectProxy *parent ); + int id, const char *ret, int sig, const TQCString &name, JSObjectProxy *parent ); ~JSObjectProxyImp() {} /** Implements the object tree interface. */ @@ -153,7 +153,7 @@ public: KJS::Boolean connect( KJS::ExecState *exec, const KJS::Object &self, const KJS::List &args ); KJS::Boolean disconnect( KJS::ExecState *exec, KJS::Object &self, const KJS::List &args ); - KJS::Boolean connect( QObject *sender, const char *sig, const KJS::Object &recv, const QString &dest ); + KJS::Boolean connect( TQObject *sender, const char *sig, const KJS::Object &recv, const TQString &dest ); /*}*/ virtual bool implementsCall() const { return true; } @@ -170,12 +170,12 @@ protected: private: int id; - QCString rettype; // return type + TQCString rettype; // return type int sigid; // signatureid int slotid; - QCString slotname; + TQCString slotname; JSObjectProxy *proxy; - QGuardedPtr<QObject> obj; + TQGuardedPtr<TQObject> obj; class JSObjectProxyImpPrivate *d; }; |