summaryrefslogtreecommitdiffstats
path: root/kjsembed/jsvalueproxy.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:44:01 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:44:01 +0000
commit479f5f799523bffbcc83dff581a2299c047c6fff (patch)
tree186aae707ed02aac6c7cab2fb14e97f72aca5e36 /kjsembed/jsvalueproxy.h
parentf1dbff6145c98324ff82e34448b7483727e8ace4 (diff)
downloadtdebindings-479f5f799523bffbcc83dff581a2299c047c6fff.tar.gz
tdebindings-479f5f799523bffbcc83dff581a2299c047c6fff.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1157645 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kjsembed/jsvalueproxy.h')
-rw-r--r--kjsembed/jsvalueproxy.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kjsembed/jsvalueproxy.h b/kjsembed/jsvalueproxy.h
index fe85c7df..4500fe02 100644
--- a/kjsembed/jsvalueproxy.h
+++ b/kjsembed/jsvalueproxy.h
@@ -22,8 +22,8 @@
#ifndef KJSEMBEDJSVALUEPROXY_H
#define KJSEMBEDJSVALUEPROXY_H
#include "global.h"
-#include <qcstring.h>
-#include <qvariant.h>
+#include <tqcstring.h>
+#include <tqvariant.h>
#include <kjs/object.h>
#include <kjsembed/jsproxy.h>
@@ -40,13 +40,13 @@ public:
JSValueProxy();
virtual ~JSValueProxy();
- QString typeName() const;
+ TQString typeName() const;
/** Returns true iff the content of this proxy inherits the specified base-class. */
bool inherits( const char *clazz );
- void setValue( const QVariant &var );
+ void setValue( const TQVariant &var );
- QVariant toVariant() const;
+ TQVariant toVariant() const;
virtual void addBindings( KJS::ExecState *state, KJS::Object &object );
@@ -54,7 +54,7 @@ public:
virtual KJS::UString toString( KJS::ExecState *exec ) const;
private:
- QVariant val;
+ TQVariant val;
class JSValueProxyPrivate *d;
};