summaryrefslogtreecommitdiffstats
path: root/kspread/tests/tester.cc
diff options
context:
space:
mode:
Diffstat (limited to 'kspread/tests/tester.cc')
-rw-r--r--kspread/tests/tester.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/kspread/tests/tester.cc b/kspread/tests/tester.cc
index 91ce7fd4..05df95d1 100644
--- a/kspread/tests/tester.cc
+++ b/kspread/tests/tester.cc
@@ -19,8 +19,8 @@
#include "tester.h"
-#include <qstringlist.h>
-#include <qtextstream.h>
+#include <tqstringlist.h>
+#include <tqtextstream.h>
using namespace KSpread;
@@ -34,7 +34,7 @@ unsigned Tester::count() const
return testCount;
}
-QStringList Tester::errors() const
+TQStringList Tester::errors() const
{
return errorList;
}
@@ -44,10 +44,10 @@ unsigned Tester::failed() const
return errorList.count();
}
-void Tester::fail( const char *file, int line, const QString& msg )
+void Tester::fail( const char *file, int line, const TQString& msg )
{
- QString error;
- QTextStream ts( &error, IO_WriteOnly );
+ TQString error;
+ TQTextStream ts( &error, IO_WriteOnly );
ts << file << "["<< line <<"]: " << msg;
errorList.append( error );
}