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/qcanvasview_imp.h | |
parent | 1a96c45b22d01378202d9dc7ed9c47acd30f966e (diff) | |
download | tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.tar.gz tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.zip |
Initial TQt conversion
Diffstat (limited to 'kjsembed/qtbindings/qcanvasview_imp.h')
-rw-r--r-- | kjsembed/qtbindings/qcanvasview_imp.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kjsembed/qtbindings/qcanvasview_imp.h b/kjsembed/qtbindings/qcanvasview_imp.h index 24322716..01a8b1e6 100644 --- a/kjsembed/qtbindings/qcanvasview_imp.h +++ b/kjsembed/qtbindings/qcanvasview_imp.h @@ -9,7 +9,7 @@ #include <kjsembed/jsobjectproxy_imp.h> -class TQCanvasView; +class TTQCanvasView; /** * Namespace containing the KJSEmbed library. @@ -17,11 +17,11 @@ class TQCanvasView; namespace KJSEmbed { /** - * Wrapper class for TQCanvasView methods. + * Wrapper class for TTQCanvasView methods. * * @author Richard Moore, rich@kde.org */ -class QCanvasViewImp : public JSProxyImp +class TQCanvasViewImp : public JSProxyImp { public: /** Enumerates the constructors supported by this class. */ @@ -43,8 +43,8 @@ public: Method_Last = -1 }; - QCanvasViewImp( KJS::ExecState *exec, int id, bool constructor=false ); - ~QCanvasViewImp(); + TQCanvasViewImp( KJS::ExecState *exec, int id, bool constructor=false ); + ~TQCanvasViewImp(); /** * Adds the static bindings for this class to the specified Object. The @@ -58,14 +58,14 @@ public: */ static void addBindings( KJS::ExecState *exec, KJS::Object &object ); - static TQCanvasView *toQCanvasView( KJS::Object &object ); + static TTQCanvasView *toTQCanvasView( KJS::Object &object ); // // Constructors implemented by this class. // - KJS::Object QCanvasView_1( KJS::ExecState *exec, const KJS::List &args ); - KJS::Object QCanvasView_2( KJS::ExecState *exec, const KJS::List &args ); + KJS::Object TQCanvasView_1( KJS::ExecState *exec, const KJS::List &args ); + KJS::Object TQCanvasView_2( KJS::ExecState *exec, const KJS::List &args ); // // Methods implemented by this class. @@ -94,7 +94,7 @@ public: virtual KJS::Value call( KJS::ExecState *exec, KJS::Object &self, const KJS::List &args ); private: - TQCanvasView *instance; // Temp + TTQCanvasView *instance; // Temp int id; bool cons; }; |