diff options
Diffstat (limited to 'kjsembed/qtbindings/qcanvasline_imp.h')
-rw-r--r-- | kjsembed/qtbindings/qcanvasline_imp.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kjsembed/qtbindings/qcanvasline_imp.h b/kjsembed/qtbindings/qcanvasline_imp.h index 95ab8cb3..f876b8e1 100644 --- a/kjsembed/qtbindings/qcanvasline_imp.h +++ b/kjsembed/qtbindings/qcanvasline_imp.h @@ -9,7 +9,7 @@ #include <kjsembed/jsobjectproxy_imp.h> -class TQCanvasLine; +class TTQCanvasLine; /** * Namespace containing the KJSEmbed library. @@ -17,11 +17,11 @@ class TQCanvasLine; namespace KJSEmbed { /** - * Wrapper class for TQCanvasLine methods. + * Wrapper class for TTQCanvasLine methods. * * @author Richard Moore, rich@kde.org */ -class QCanvasLineImp : public JSProxyImp +class TQCanvasLineImp : public JSProxyImp { public: /** Enumerates the constructors supported by this class. */ @@ -43,8 +43,8 @@ public: Method_Last = -1 }; - QCanvasLineImp( KJS::ExecState *exec, int id, bool constructor=false ); - ~QCanvasLineImp(); + TQCanvasLineImp( KJS::ExecState *exec, int id, bool constructor=false ); + ~TQCanvasLineImp(); /** * Adds the static bindings for this class to the specified Object. The @@ -58,13 +58,13 @@ public: */ static void addBindings( KJS::ExecState *exec, KJS::Object &object ); - static TQCanvasLine *toQCanvasLine( KJS::Object &object ); + static TTQCanvasLine *toTQCanvasLine( KJS::Object &object ); // // Constructors implemented by this class. // - KJS::Object QCanvasLine_1( KJS::ExecState *exec, const KJS::List &args ); + KJS::Object TQCanvasLine_1( 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: - TQCanvasLine *instance; // Temp + TTQCanvasLine *instance; // Temp int id; bool cons; }; |