summaryrefslogtreecommitdiffstats
path: root/buildtools/lib/parsers/autotools/autotools_yacc.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:56:07 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:56:07 +0000
commitd6f8bbb45b267065a6907e71ff9c98bb6d161241 (patch)
treed109539636691d7b03036ca1c0ed29dbae6577cf /buildtools/lib/parsers/autotools/autotools_yacc.cpp
parent3331a47a9cad24795c7440ee8107143ce444ef34 (diff)
downloadtdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.tar.gz
tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1157658 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'buildtools/lib/parsers/autotools/autotools_yacc.cpp')
-rw-r--r--buildtools/lib/parsers/autotools/autotools_yacc.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/buildtools/lib/parsers/autotools/autotools_yacc.cpp b/buildtools/lib/parsers/autotools/autotools_yacc.cpp
index 827cf4bc..93cdb733 100644
--- a/buildtools/lib/parsers/autotools/autotools_yacc.cpp
+++ b/buildtools/lib/parsers/autotools/autotools_yacc.cpp
@@ -150,7 +150,7 @@ noinst_HEADERS = foo.h #regognize me
@fixme 1 shift/reduce conflict in "line_body" rule
*/
-#include <qvaluestack.h>
+#include <tqvaluestack.h>
#include "autotoolsast.h"
#define YYSTYPE_IS_DECLARED
@@ -164,7 +164,7 @@ struct Result {
Result(): node(0) {}
/**Type of semantic value for simple grammar rules.*/
- QString value;
+ TQString value;
/**Type of semantic value for grammar rules which are parts of AST.*/
AST *node;
/**Type of semantic value for "multiline_values" grammar rule.
@@ -183,7 +183,7 @@ struct Result {
foo3.cpp foo4.cpp
</pre>
*/
- QStringList values;
+ TQStringList values;
};
typedef Result YYSTYPE;
@@ -206,7 +206,7 @@ When a scope or function scope statement is parsed, the child ProjectAST is crea
and pushed onto the stack. Therefore all statements which belong to the scope
or function scope are added as childs to their direct parent (scope or function scope).
*/
-QValueStack<ProjectAST*> projects;
+TQValueStack<ProjectAST*> projects;
/**
The current depth of AST node is stored here.
@@ -1381,7 +1381,7 @@ yyreduce:
{
AssignmentAST *node = new AssignmentAST();
node->scopedID = yyvsp[-1].value;
- node->values = QStringList(yyvsp[0].value);
+ node->values = TQStringList(yyvsp[0].value);
yyval.node = node;
;}
break;