diff options
Diffstat (limited to 'kjsembed/jsfactory_imp.h')
-rw-r--r-- | kjsembed/jsfactory_imp.h | 8 |
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 ¶m=TTQString::null ); + JSFactoryImp( KJS::ExecState *exec, JSFactory *fact, int id, const TQString ¶m=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; }; |