summaryrefslogtreecommitdiffstats
path: root/kjsembed/jsobjectproxy_imp.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 16:20:48 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 16:20:48 -0600
commite63beeb5bdb82987b1e00bc35178667786fbad48 (patch)
treeab77b6ac830b7944d5d1eb9ce8f81feb8fdab948 /kjsembed/jsobjectproxy_imp.h
parent67557a2b56c0678c22ab1b00c4fd0224c5e9ed99 (diff)
downloadtdebindings-e63beeb5bdb82987b1e00bc35178667786fbad48.tar.gz
tdebindings-e63beeb5bdb82987b1e00bc35178667786fbad48.zip
Fix incorrect conversion
Diffstat (limited to 'kjsembed/jsobjectproxy_imp.h')
-rw-r--r--kjsembed/jsobjectproxy_imp.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/kjsembed/jsobjectproxy_imp.h b/kjsembed/jsobjectproxy_imp.h
index 5ecb0853..2c1cefb6 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 TTQCString &name, JSObjectProxy *parent );
+ int id, const TQCString &name, JSObjectProxy *parent );
JSObjectProxyImp( KJS::ExecState *exec,
- int id, int sigid, const TTQCString &name, JSObjectProxy *parent );
+ int id, int sigid, const TQCString &name, JSObjectProxy *parent );
JSObjectProxyImp( KJS::ExecState *exec,
- int id, const char *ret, int sig, const TTQCString &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( TTQObject *sender, const char *sig, const KJS::Object &recv, const TTQString &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;
- TTQCString rettype; // return type
+ TQCString rettype; // return type
int sigid; // signatureid
int slotid;
- TTQCString slotname;
+ TQCString slotname;
JSObjectProxy *proxy;
- TTQGuardedPtr<TTQObject> obj;
+ TQGuardedPtr<TQObject> obj;
class JSObjectProxyImpPrivate *d;
};