diff options
author | Timothy Pearson <[email protected]> | 2011-12-05 15:55:57 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-05 15:55:57 -0600 |
commit | 9ba04742771370f59740e32e11c5f3a1e6a1b70a (patch) | |
tree | c81c34dae2b3b1ea73801bf18a960265dc4207f7 /kjsembed/qtbindings/qcanvasellipse_imp.h | |
parent | 1a96c45b22d01378202d9dc7ed9c47acd30f966e (diff) | |
download | tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.tar.gz tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.zip |
Initial TQt conversion
Diffstat (limited to 'kjsembed/qtbindings/qcanvasellipse_imp.h')
-rw-r--r-- | kjsembed/qtbindings/qcanvasellipse_imp.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kjsembed/qtbindings/qcanvasellipse_imp.h b/kjsembed/qtbindings/qcanvasellipse_imp.h index 2a61a439..a0a03c8a 100644 --- a/kjsembed/qtbindings/qcanvasellipse_imp.h +++ b/kjsembed/qtbindings/qcanvasellipse_imp.h @@ -9,7 +9,7 @@ #include <kjsembed/jsobjectproxy_imp.h> -class TQCanvasEllipse; +class TTQCanvasEllipse; /** * Namespace containing the KJSEmbed library. @@ -17,11 +17,11 @@ class TQCanvasEllipse; namespace KJSEmbed { /** - * Wrapper class for TQCanvasEllipse methods. + * Wrapper class for TTQCanvasEllipse methods. * * @author Richard Moore, [email protected] */ -class QCanvasEllipseImp : public JSProxyImp +class TQCanvasEllipseImp : public JSProxyImp { public: /** Enumerates the constructors supported by this class. */ @@ -48,8 +48,8 @@ public: Method_Last = -1 }; - QCanvasEllipseImp( KJS::ExecState *exec, int id, bool constructor=false ); - ~QCanvasEllipseImp(); + TQCanvasEllipseImp( KJS::ExecState *exec, int id, bool constructor=false ); + ~TQCanvasEllipseImp(); /** * Adds the static bindings for this class to the specified Object. The @@ -63,15 +63,15 @@ public: */ static void addBindings( KJS::ExecState *exec, KJS::Object &object ); - static TQCanvasEllipse *toQCanvasEllipse( KJS::Object &object ); + static TTQCanvasEllipse *toTQCanvasEllipse( KJS::Object &object ); // // Constructors implemented by this class. // - KJS::Object QCanvasEllipse_1( KJS::ExecState *exec, const KJS::List &args ); - KJS::Object QCanvasEllipse_2( KJS::ExecState *exec, const KJS::List &args ); - KJS::Object QCanvasEllipse_3( KJS::ExecState *exec, const KJS::List &args ); + KJS::Object TQCanvasEllipse_1( KJS::ExecState *exec, const KJS::List &args ); + KJS::Object TQCanvasEllipse_2( KJS::ExecState *exec, const KJS::List &args ); + KJS::Object TQCanvasEllipse_3( KJS::ExecState *exec, const KJS::List &args ); // // Methods implemented by this class. @@ -104,7 +104,7 @@ public: virtual KJS::Value call( KJS::ExecState *exec, KJS::Object &self, const KJS::List &args ); private: - TQCanvasEllipse *instance; // Temp + TTQCanvasEllipse *instance; // Temp int id; bool cons; }; |