summaryrefslogtreecommitdiffstats
path: root/buildtools/lib/parsers/qmake/tests/runner.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'buildtools/lib/parsers/qmake/tests/runner.cpp')
-rw-r--r--buildtools/lib/parsers/qmake/tests/runner.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/buildtools/lib/parsers/qmake/tests/runner.cpp b/buildtools/lib/parsers/qmake/tests/runner.cpp
index 140b39f4..6f1d5956 100644
--- a/buildtools/lib/parsers/qmake/tests/runner.cpp
+++ b/buildtools/lib/parsers/qmake/tests/runner.cpp
@@ -24,7 +24,7 @@
#include "qmakedriver.h"
#include "qmakeastvisitor.h"
-#include <qstring.h>
+#include <tqstring.h>
#include <kdebug.h>
#include <kcmdlineargs.h>
@@ -93,7 +93,7 @@ private:
QMake::ASTVisitor::leaveFunctionScope(p);
}
- QString replaceWs(QString s)
+ TQString replaceWs(TQString s)
{
return s.replace("\n", "%nl").replace("\t", "%tab").replace(" ", "%spc");
}
@@ -122,9 +122,9 @@ private:
QMake::ASTVisitor::processInclude(a);
}
- QString getIndent()
+ TQString getIndent()
{
- QString ind;
+ TQString ind;
for( int i = 0 ; i < indent ; i++)
ind += " ";
return ind;
@@ -159,7 +159,7 @@ int main(int argc, char *argv[])
if ( !silent )
{
pa.processProject(projectAST);
- QString profile;
+ TQString profile;
projectAST->writeBack(profile);
kdDebug(9024) << "QMake file written back:\n" << profile << endl;
}