summaryrefslogtreecommitdiffstats
path: root/kjsembed/jsvalueproxy.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/jsvalueproxy.h
parent67557a2b56c0678c22ab1b00c4fd0224c5e9ed99 (diff)
downloadtdebindings-e63beeb5bdb82987b1e00bc35178667786fbad48.tar.gz
tdebindings-e63beeb5bdb82987b1e00bc35178667786fbad48.zip
Fix incorrect conversion
Diffstat (limited to 'kjsembed/jsvalueproxy.h')
-rw-r--r--kjsembed/jsvalueproxy.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kjsembed/jsvalueproxy.h b/kjsembed/jsvalueproxy.h
index ec100950..4500fe02 100644
--- a/kjsembed/jsvalueproxy.h
+++ b/kjsembed/jsvalueproxy.h
@@ -40,13 +40,13 @@ public:
JSValueProxy();
virtual ~JSValueProxy();
- TTQString 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 TTQVariant &var );
+ void setValue( const TQVariant &var );
- TTQVariant 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:
- TTQVariant val;
+ TQVariant val;
class JSValueProxyPrivate *d;
};