diff options
Diffstat (limited to 'kjsembed/qtbindings/qcanvassprite_imp.h')
-rw-r--r-- | kjsembed/qtbindings/qcanvassprite_imp.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kjsembed/qtbindings/qcanvassprite_imp.h b/kjsembed/qtbindings/qcanvassprite_imp.h index 4fe40dc1..969cd9cf 100644 --- a/kjsembed/qtbindings/qcanvassprite_imp.h +++ b/kjsembed/qtbindings/qcanvassprite_imp.h @@ -9,7 +9,7 @@ #include <kjsembed/jsobjectproxy_imp.h> -class TQCanvasSprite; +class TTQCanvasSprite; /** * Namespace containing the KJSEmbed library. @@ -17,11 +17,11 @@ class TQCanvasSprite; namespace KJSEmbed { /** - * Wrapper class for TQCanvasSprite methods. + * Wrapper class for TTQCanvasSprite methods. * * @author Richard Moore, rich@kde.org */ -class QCanvasSpriteImp : public JSProxyImp +class TQCanvasSpriteImp : public JSProxyImp { public: /** Enumerates the constructors supported by this class. */ @@ -62,8 +62,8 @@ public: Method_Last = -1 }; - QCanvasSpriteImp( KJS::ExecState *exec, int id, bool constructor=false ); - ~QCanvasSpriteImp(); + TQCanvasSpriteImp( KJS::ExecState *exec, int id, bool constructor=false ); + ~TQCanvasSpriteImp(); /** * Adds the static bindings for this class to the specified Object. The @@ -77,13 +77,13 @@ public: */ static void addBindings( KJS::ExecState *exec, KJS::Object &object ); - static TQCanvasSprite *toQCanvasSprite( KJS::Object &object ); + static TTQCanvasSprite *toTQCanvasSprite( KJS::Object &object ); // // Constructors implemented by this class. // - KJS::Object QCanvasSprite_1( KJS::ExecState *exec, const KJS::List &args ); + KJS::Object TQCanvasSprite_1( KJS::ExecState *exec, const KJS::List &args ); // // Methods implemented by this class. @@ -132,7 +132,7 @@ public: virtual KJS::Value call( KJS::ExecState *exec, KJS::Object &self, const KJS::List &args ); private: - TQCanvasSprite *instance; // Temp + TTQCanvasSprite *instance; // Temp int id; bool cons; }; |