summaryrefslogtreecommitdiffstats
path: root/buildtools/lib/parsers/autotools/autotoolsdriver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'buildtools/lib/parsers/autotools/autotoolsdriver.cpp')
-rw-r--r--buildtools/lib/parsers/autotools/autotoolsdriver.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/buildtools/lib/parsers/autotools/autotoolsdriver.cpp b/buildtools/lib/parsers/autotools/autotoolsdriver.cpp
index a3d53151..05734c3f 100644
--- a/buildtools/lib/parsers/autotools/autotoolsdriver.cpp
+++ b/buildtools/lib/parsers/autotools/autotoolsdriver.cpp
@@ -24,13 +24,13 @@
#include "autotoolsast.h"
#include <stdio.h>
-#include <qvaluestack.h>
+#include <tqvaluestack.h>
#include <kio/netaccess.h>
extern FILE *yyin, *yyout;
extern int yyparse();
//extern int yydebug;
-extern QValueStack<AutoTools::ProjectAST *> projects;
+extern TQValueStack<AutoTools::ProjectAST *> projects;
namespace AutoTools {
@@ -49,14 +49,14 @@ int Driver::parseFile(const char *fileName, ProjectAST **ast)
return ret;
}
-int Driver::parseFile(QString fileName, ProjectAST **ast)
+int Driver::parseFile(TQString fileName, ProjectAST **ast)
{
return parseFile(fileName.ascii(), ast);
}
int Driver::parseFile(KURL fileName, ProjectAST **ast)
{
- QString tmpFile;
+ TQString tmpFile;
int ret = 0;
if (KIO::NetAccess::download(fileName, tmpFile, 0))
ret = parseFile(tmpFile, ast);