diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 15:55:57 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 15:55:57 -0600 |
commit | 9ba04742771370f59740e32e11c5f3a1e6a1b70a (patch) | |
tree | c81c34dae2b3b1ea73801bf18a960265dc4207f7 /kjsembed/jsobjectproxy_imp.h | |
parent | 1a96c45b22d01378202d9dc7ed9c47acd30f966e (diff) | |
download | tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.tar.gz tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.zip |
Initial TQt conversion
Diffstat (limited to 'kjsembed/jsobjectproxy_imp.h')
-rw-r--r-- | kjsembed/jsobjectproxy_imp.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kjsembed/jsobjectproxy_imp.h b/kjsembed/jsobjectproxy_imp.h index 2c1cefb6..5ecb0853 100644 --- a/kjsembed/jsobjectproxy_imp.h +++ b/kjsembed/jsobjectproxy_imp.h @@ -115,11 +115,11 @@ public: JSObjectProxyImp( KJS::ExecState *exec, int id, JSObjectProxy *parent ); JSObjectProxyImp( KJS::ExecState *exec, - int id, const TQCString &name, JSObjectProxy *parent ); + int id, const TTQCString &name, JSObjectProxy *parent ); JSObjectProxyImp( KJS::ExecState *exec, - int id, int sigid, const TQCString &name, JSObjectProxy *parent ); + int id, int sigid, const TTQCString &name, JSObjectProxy *parent ); JSObjectProxyImp( KJS::ExecState *exec, - int id, const char *ret, int sig, const TQCString &name, JSObjectProxy *parent ); + int id, const char *ret, int sig, const TTQCString &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( TQObject *sender, const char *sig, const KJS::Object &recv, const TQString &dest ); + KJS::Boolean connect( TTQObject *sender, const char *sig, const KJS::Object &recv, const TTQString &dest ); /*}*/ virtual bool implementsCall() const { return true; } @@ -170,12 +170,12 @@ protected: private: int id; - TQCString rettype; // return type + TTQCString rettype; // return type int sigid; // signatureid int slotid; - TQCString slotname; + TTQCString slotname; JSObjectProxy *proxy; - TQGuardedPtr<TQObject> obj; + TTQGuardedPtr<TTQObject> obj; class JSObjectProxyImpPrivate *d; }; |