diff options
Diffstat (limited to 'kjsembed/qtbindings/qmenuitem_imp.h')
-rw-r--r-- | kjsembed/qtbindings/qmenuitem_imp.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kjsembed/qtbindings/qmenuitem_imp.h b/kjsembed/qtbindings/qmenuitem_imp.h index 59b7d996..ad1e480b 100644 --- a/kjsembed/qtbindings/qmenuitem_imp.h +++ b/kjsembed/qtbindings/qmenuitem_imp.h @@ -9,7 +9,7 @@ #include <kjsembed/jsobjectproxy_imp.h> -class TQMenuItem; +class TTQMenuItem; /** * Namespace containing the KJSEmbed library. @@ -17,11 +17,11 @@ class TQMenuItem; namespace KJSEmbed { /** - * Wrapper class for TQMenuItem methods. + * Wrapper class for TTQMenuItem methods. * * @author Richard Moore, rich@kde.org */ -class QMenuItemImp : public JSProxyImp +class TQMenuItemImp : public JSProxyImp { public: /** Enumerates the constructors supported by this class. */ @@ -57,8 +57,8 @@ public: Method_Last = -1 }; - QMenuItemImp( KJS::ExecState *exec, int id, bool constructor=false ); - ~QMenuItemImp(); + TQMenuItemImp( KJS::ExecState *exec, int id, bool constructor=false ); + ~TQMenuItemImp(); /** * Adds the static bindings for this class to the specified Object. The @@ -72,13 +72,13 @@ public: */ static void addBindings( KJS::ExecState *exec, KJS::Object &object ); - static TQMenuItem *toQMenuItem( KJS::Object &object ); + static TTQMenuItem *toTQMenuItem( KJS::Object &object ); // // Constructors implemented by this class. // - KJS::Object QMenuItem_1( KJS::ExecState *exec, const KJS::List &args ); + KJS::Object TQMenuItem_1( KJS::ExecState *exec, const KJS::List &args ); // // Methods implemented by this class. @@ -122,7 +122,7 @@ public: virtual KJS::Value call( KJS::ExecState *exec, KJS::Object &self, const KJS::List &args ); private: - TQMenuItem *instance; // Temp + TTQMenuItem *instance; // Temp int id; bool cons; }; |