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/qtbindings/qcanvasspline_imp.h | |
parent | 1a96c45b22d01378202d9dc7ed9c47acd30f966e (diff) | |
download | tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.tar.gz tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.zip |
Initial TQt conversion
Diffstat (limited to 'kjsembed/qtbindings/qcanvasspline_imp.h')
-rw-r--r-- | kjsembed/qtbindings/qcanvasspline_imp.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kjsembed/qtbindings/qcanvasspline_imp.h b/kjsembed/qtbindings/qcanvasspline_imp.h index 73f87999..be3a29ea 100644 --- a/kjsembed/qtbindings/qcanvasspline_imp.h +++ b/kjsembed/qtbindings/qcanvasspline_imp.h @@ -9,7 +9,7 @@ #include <kjsembed/jsobjectproxy_imp.h> -class TQCanvasSpline; +class TTQCanvasSpline; /** * Namespace containing the KJSEmbed library. @@ -17,11 +17,11 @@ class TQCanvasSpline; namespace KJSEmbed { /** - * Wrapper class for TQCanvasSpline methods. + * Wrapper class for TTQCanvasSpline methods. * * @author Richard Moore, rich@kde.org */ -class QCanvasSplineImp : public JSProxyImp +class TQCanvasSplineImp : public JSProxyImp { public: /** Enumerates the constructors supported by this class. */ @@ -41,8 +41,8 @@ public: Method_Last = -1 }; - QCanvasSplineImp( KJS::ExecState *exec, int id, bool constructor=false ); - ~QCanvasSplineImp(); + TQCanvasSplineImp( KJS::ExecState *exec, int id, bool constructor=false ); + ~TQCanvasSplineImp(); /** * Adds the static bindings for this class to the specified Object. The @@ -56,13 +56,13 @@ public: */ static void addBindings( KJS::ExecState *exec, KJS::Object &object ); - static TQCanvasSpline *toQCanvasSpline( KJS::Object &object ); + static TTQCanvasSpline *toTQCanvasSpline( KJS::Object &object ); // // Constructors implemented by this class. // - KJS::Object QCanvasSpline_1( KJS::ExecState *exec, const KJS::List &args ); + KJS::Object TQCanvasSpline_1( KJS::ExecState *exec, const KJS::List &args ); // // Methods implemented by this class. @@ -90,7 +90,7 @@ public: virtual KJS::Value call( KJS::ExecState *exec, KJS::Object &self, const KJS::List &args ); private: - TQCanvasSpline *instance; // Temp + TTQCanvasSpline *instance; // Temp int id; bool cons; }; |