diff options
Diffstat (limited to 'kjsembed/jsvalueproxy.h')
-rw-r--r-- | kjsembed/jsvalueproxy.h | 12 |
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; }; |