summaryrefslogtreecommitdiffstats
path: root/kjsembed/jsfactory_imp.h
diff options
context:
space:
mode:
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 a576aa03..53ea1143 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 QString &param=QString::null );
+ JSFactoryImp( KJS::ExecState *exec, JSFactory *fact, int id, const TQString &param=TQString::null );
~JSFactoryImp();
- QString 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(QObject *obj, KJS::Object &parent);
+ void publishChildren(TQObject *obj, KJS::Object &parent);
JSFactory *fact;
uint id;
- QString param;
+ TQString param;
KJS::Value defaultVal;
class JSFactoryImpPrivate *d;
};