diff options
Diffstat (limited to 'kjsembed/builtins/qfile_imp.h')
-rw-r--r-- | kjsembed/builtins/qfile_imp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kjsembed/builtins/qfile_imp.h b/kjsembed/builtins/qfile_imp.h index 6db9b2df..69d28e9d 100644 --- a/kjsembed/builtins/qfile_imp.h +++ b/kjsembed/builtins/qfile_imp.h @@ -9,7 +9,7 @@ #include <kjsembed/jsobjectproxy_imp.h> -class TTQFile; +class TQFile; /** * Namespace containing the KJSEmbed library. @@ -17,7 +17,7 @@ class TTQFile; namespace KJSEmbed { /** - * Wrapper class for TTQFile methods. + * Wrapper class for TQFile methods. * * @author Richard Moore, rich@kde.org */ @@ -72,7 +72,7 @@ public: static void addBindings( KJS::ExecState *exec, KJS::Object &object ); - static TTQFile *toTQFile( KJS::Object &object ); + static TQFile *toTQFile( KJS::Object &object ); // // Constructors implemented by this class. @@ -132,7 +132,7 @@ public: virtual KJS::Value call( KJS::ExecState *exec, KJS::Object &self, const KJS::List &args ); private: - TTQFile *instance; // Temp + TQFile *instance; // Temp int id; bool cons; }; |