summaryrefslogtreecommitdiffstats
path: root/kturtle/src/token.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:39:55 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:39:55 +0000
commit0a6e0958c03e41c87b15557b6f407874f20c2f8d (patch)
tree2cdd58c4013b1be09cfcbb4ddae2b05712b9aeee /kturtle/src/token.h
parent83f9dfafc157ff7823804b3ff457b43d021a5b4b (diff)
downloadtdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.tar.gz
tdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1157642 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kturtle/src/token.h')
-rw-r--r--kturtle/src/token.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kturtle/src/token.h b/kturtle/src/token.h
index 2c0e7622..24eb400b 100644
--- a/kturtle/src/token.h
+++ b/kturtle/src/token.h
@@ -20,7 +20,7 @@
#ifndef _TOKEN_H_
#define _TOKEN_H_
-#include <qstring.h>
+#include <tqstring.h>
#include "value.h"
@@ -34,7 +34,7 @@ struct Pos // convenience, it codes a bit nicer with this, i.e.: "int row = tok.
struct Token
{
int type; // filled with enumed tokenTypes
- QString look; // the way the token looks in the text editor
+ TQString look; // the way the token looks in the text editor
Value value; // if the token is a number it can be stored here
Pos start; // row'n'col of the starting/ending point of the token
Pos end;
@@ -127,7 +127,7 @@ enum tokenTypes
tokDo // a dummy command
};
-// const QString tokenTypeNames[] =
+// const TQString tokenTypeNames[] =
// {
// /* tokNotSet = 0 */ "",
// /* tokError = 1 */ "",
@@ -213,7 +213,7 @@ enum tokenTypes
// /* tokDo */ "",
// };
//
-// // QString Token::tokenType2name(int tokenType)
+// // TQString Token::tokenType2name(int tokenType)
// // {
// // if (tokenType >= 0) return tokenTypeNames[tokenType];
// // else return "";