summaryrefslogtreecommitdiffstats
path: root/kjsembed/builtins/qfile_imp.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 15:55:57 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 15:55:57 -0600
commit9ba04742771370f59740e32e11c5f3a1e6a1b70a (patch)
treec81c34dae2b3b1ea73801bf18a960265dc4207f7 /kjsembed/builtins/qfile_imp.h
parent1a96c45b22d01378202d9dc7ed9c47acd30f966e (diff)
downloadtdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.tar.gz
tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.zip
Initial TQt conversion
Diffstat (limited to 'kjsembed/builtins/qfile_imp.h')
-rw-r--r--kjsembed/builtins/qfile_imp.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/kjsembed/builtins/qfile_imp.h b/kjsembed/builtins/qfile_imp.h
index bf4df5ea..6db9b2df 100644
--- a/kjsembed/builtins/qfile_imp.h
+++ b/kjsembed/builtins/qfile_imp.h
@@ -9,7 +9,7 @@
#include <kjsembed/jsobjectproxy_imp.h>
-class TQFile;
+class TTQFile;
/**
* Namespace containing the KJSEmbed library.
@@ -17,11 +17,11 @@ class TQFile;
namespace KJSEmbed {
/**
- * Wrapper class for TQFile methods.
+ * Wrapper class for TTQFile methods.
*
* @author Richard Moore, rich@kde.org
*/
-class QFileImp : public JSProxyImp
+class TQFileImp : public JSProxyImp
{
public:
/** Enumerates the constructors supported by this class. */
@@ -67,19 +67,19 @@ public:
Method_Last = -1
};
- QFileImp( KJS::ExecState *exec, int id, bool constructor=false );
- ~QFileImp();
+ TQFileImp( KJS::ExecState *exec, int id, bool constructor=false );
+ ~TQFileImp();
static void addBindings( KJS::ExecState *exec, KJS::Object &object );
- static TQFile *toQFile( KJS::Object &object );
+ static TTQFile *toTQFile( KJS::Object &object );
//
// Constructors implemented by this class.
//
- KJS::Object QFile_1( KJS::ExecState *exec, const KJS::List &args );
- KJS::Object QFile_2( KJS::ExecState *exec, const KJS::List &args );
+ KJS::Object TQFile_1( KJS::ExecState *exec, const KJS::List &args );
+ KJS::Object TQFile_2( 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:
- TQFile *instance; // Temp
+ TTQFile *instance; // Temp
int id;
bool cons;
};