summaryrefslogtreecommitdiffstats
path: root/kjsembed/builtins/textstream_imp.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 16:20:48 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 16:20:48 -0600
commite63beeb5bdb82987b1e00bc35178667786fbad48 (patch)
treeab77b6ac830b7944d5d1eb9ce8f81feb8fdab948 /kjsembed/builtins/textstream_imp.h
parent67557a2b56c0678c22ab1b00c4fd0224c5e9ed99 (diff)
downloadtdebindings-e63beeb5bdb82987b1e00bc35178667786fbad48.tar.gz
tdebindings-e63beeb5bdb82987b1e00bc35178667786fbad48.zip
Fix incorrect conversion
Diffstat (limited to 'kjsembed/builtins/textstream_imp.h')
-rw-r--r--kjsembed/builtins/textstream_imp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/kjsembed/builtins/textstream_imp.h b/kjsembed/builtins/textstream_imp.h
index 7a2bf824..c08470fc 100644
--- a/kjsembed/builtins/textstream_imp.h
+++ b/kjsembed/builtins/textstream_imp.h
@@ -27,7 +27,7 @@
#include <kjsembed/jsobjectproxy_imp.h>
-class TTQTextStream;
+class TQTextStream;
namespace KJSEmbed {
namespace BuiltIns {
@@ -51,7 +51,7 @@ public:
MethodFlush
};
- TextStreamImp( KJS::ExecState *exec, int id, TTQTextStream *ts );
+ TextStreamImp( KJS::ExecState *exec, int id, TQTextStream *ts );
~TextStreamImp();
static void addBindings( KJS::ExecState *exec, KJS::Object &object );
@@ -64,7 +64,7 @@ public:
private:
int id;
- TTQTextStream *ts;
+ TQTextStream *ts;
class TextStreamImpPrivate *d;
};