diff options
Diffstat (limited to 'libkdepim/komposer/core/tests/testfactory.h')
-rw-r--r-- | libkdepim/komposer/core/tests/testfactory.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libkdepim/komposer/core/tests/testfactory.h b/libkdepim/komposer/core/tests/testfactory.h index 588941d8e..9354e52ad 100644 --- a/libkdepim/komposer/core/tests/testfactory.h +++ b/libkdepim/komposer/core/tests/testfactory.h @@ -23,7 +23,7 @@ #include "managertest.h" -#include <qasciidict.h> +#include <tqasciidict.h> #define ADD_TEST(x) addTest( #x, new x ) @@ -40,15 +40,15 @@ public: { int result = 0; kdDebug()<<"Running tests..."<<endl; - QAsciiDictIterator<Tester> it( m_tests ); + TQAsciiDictIterator<Tester> it( m_tests ); for( ; it.current(); ++it ) { Tester* test = it.current(); test->allTests(); - QStringList errorList = test->errorList(); + TQStringList errorList = test->errorList(); if ( !errorList.empty() ) { ++result; kdDebug()<< it.currentKey() <<" errors:" << endl; - for ( QStringList::Iterator itr = errorList.begin(); + for ( TQStringList::Iterator itr = errorList.begin(); itr != errorList.end(); ++itr ) { kdDebug()<< "\t" << (*itr).latin1() <<endl;; } @@ -65,7 +65,7 @@ public: m_tests.insert( name, test ); } private: - QAsciiDict<Tester> m_tests; + TQAsciiDict<Tester> m_tests; }; #endif |