summaryrefslogtreecommitdiffstats
path: root/kjsembed/jsfactory_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/jsfactory_imp.h
parent67557a2b56c0678c22ab1b00c4fd0224c5e9ed99 (diff)
downloadtdebindings-e63beeb5bdb82987b1e00bc35178667786fbad48.tar.gz
tdebindings-e63beeb5bdb82987b1e00bc35178667786fbad48.zip
Fix incorrect conversion
Diffstat (limited to 'kjsembed/jsfactory_imp.h')
-rw-r--r--kjsembed/jsfactory_imp.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kjsembed/jsfactory_imp.h b/kjsembed/jsfactory_imp.h
index fa23127d..ee4c59f0 100644
--- a/kjsembed/jsfactory_imp.h
+++ b/kjsembed/jsfactory_imp.h
@@ -60,10 +60,10 @@ public:
MethodCreateObject
};
- JSFactoryImp( KJS::ExecState *exec, JSFactory *fact, int id, const TTQString &param=TTQString::null );
+ JSFactoryImp( KJS::ExecState *exec, JSFactory *fact, int id, const TQString &param=TQString::null );
~JSFactoryImp();
- TTQString parameter() const { return param; }
+ TQString parameter() const { return param; }
/** Returns true iff this object implements the construct function. */
virtual bool implementsConstruct() const { return true; }
@@ -83,10 +83,10 @@ public:
JSFactory *factory() const { return fact; }
private:
- void publishChildren(TTQObject *obj, KJS::Object &parent);
+ void publishChildren(TQObject *obj, KJS::Object &parent);
JSFactory *fact;
uint id;
- TTQString param;
+ TQString param;
KJS::Value defaultVal;
class JSFactoryImpPrivate *d;
};