From d6f8bbb45b267065a6907e71ff9c98bb6d161241 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:56:07 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1157658 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- buildtools/lib/parsers/autotools/autotools_yacc.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'buildtools/lib/parsers/autotools/autotools_yacc.cpp') 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 +#include #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 */ - 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 projects; +TQValueStack 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; -- cgit v1.2.3