summaryrefslogtreecommitdiffstats
path: root/buildtools/lib/parsers
diff options
context:
space:
mode:
Diffstat (limited to 'buildtools/lib/parsers')
-rw-r--r--buildtools/lib/parsers/autotools/autotoolsdriver.cpp4
-rw-r--r--buildtools/lib/parsers/qmake/qmakedriver.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/buildtools/lib/parsers/autotools/autotoolsdriver.cpp b/buildtools/lib/parsers/autotools/autotoolsdriver.cpp
index 5a1de34c..a9620598 100644
--- a/buildtools/lib/parsers/autotools/autotoolsdriver.cpp
+++ b/buildtools/lib/parsers/autotools/autotoolsdriver.cpp
@@ -58,9 +58,9 @@ int Driver::parseFile(KURL fileName, ProjectAST **ast)
{
TQString tmpFile;
int ret = 0;
- if (KIO::NetAccess::download(fileName, tmpFile, 0))
+ if (TDEIO::NetAccess::download(fileName, tmpFile, 0))
ret = parseFile(tmpFile, ast);
- KIO::NetAccess::removeTempFile(tmpFile);
+ TDEIO::NetAccess::removeTempFile(tmpFile);
return ret;
}
diff --git a/buildtools/lib/parsers/qmake/qmakedriver.cpp b/buildtools/lib/parsers/qmake/qmakedriver.cpp
index 21023017..e5a8f994 100644
--- a/buildtools/lib/parsers/qmake/qmakedriver.cpp
+++ b/buildtools/lib/parsers/qmake/qmakedriver.cpp
@@ -75,9 +75,9 @@ int Driver::parseFile(KURL fileName, ProjectAST **ast, int debug)
{
TQString tmpFile;
int ret = 0;
- if (KIO::NetAccess::download(fileName, tmpFile, 0))
+ if (TDEIO::NetAccess::download(fileName, tmpFile, 0))
ret = parseFile(tmpFile, ast, debug);
- KIO::NetAccess::removeTempFile(tmpFile);
+ TDEIO::NetAccess::removeTempFile(tmpFile);
return ret;
}