diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 15:55:57 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 15:55:57 -0600 |
commit | 9ba04742771370f59740e32e11c5f3a1e6a1b70a (patch) | |
tree | c81c34dae2b3b1ea73801bf18a960265dc4207f7 /kjsembed/jsfactory_imp.h | |
parent | 1a96c45b22d01378202d9dc7ed9c47acd30f966e (diff) | |
download | tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.tar.gz tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.zip |
Initial TQt conversion
Diffstat (limited to 'kjsembed/jsfactory_imp.h')
-rw-r--r-- | kjsembed/jsfactory_imp.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kjsembed/jsfactory_imp.h b/kjsembed/jsfactory_imp.h index 53ea1143..fa23127d 100644 --- a/kjsembed/jsfactory_imp.h +++ b/kjsembed/jsfactory_imp.h @@ -52,7 +52,7 @@ public: MethodWidgets, MethodTypes, MethodIsSupported, - MethodIsQObject, + MethodIsTQObject, MethodIsValue, MethodIsOpaque, MethodListPlugins, @@ -60,10 +60,10 @@ public: MethodCreateObject }; - JSFactoryImp( KJS::ExecState *exec, JSFactory *fact, int id, const TQString ¶m=TQString::null ); + JSFactoryImp( KJS::ExecState *exec, JSFactory *fact, int id, const TTQString ¶m=TTQString::null ); ~JSFactoryImp(); - TQString parameter() const { return param; } + TTQString 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(TQObject *obj, KJS::Object &parent); + void publishChildren(TTQObject *obj, KJS::Object &parent); JSFactory *fact; uint id; - TQString param; + TTQString param; KJS::Value defaultVal; class JSFactoryImpPrivate *d; }; |