diff options
Diffstat (limited to 'kexi/plugins/macros/tests/variabletests.cpp')
-rw-r--r-- | kexi/plugins/macros/tests/variabletests.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/kexi/plugins/macros/tests/variabletests.cpp b/kexi/plugins/macros/tests/variabletests.cpp index 8bc8d9c7..5035f929 100644 --- a/kexi/plugins/macros/tests/variabletests.cpp +++ b/kexi/plugins/macros/tests/variabletests.cpp @@ -34,8 +34,8 @@ #include <ostream> -#include <qstringlist.h> -#include <qdom.h> +#include <tqstringlist.h> +#include <tqdom.h> #include <kdebug.h> #include <kunittest/runner.h> @@ -66,12 +66,12 @@ namespace KoMacroTest { /** * An @a TestObject instance used internaly to test - * handling and communication with from QObject + * handling and communication with from TQObject * inheritated instances. */ TestAction* testaction; - QDomDocument* doomdocument; + TQDomDocument* doomdocument; KSharedPtr<KoMacro::Macro> macro; @@ -85,7 +85,7 @@ namespace KoMacroTest { }; } -typedef QValueList< KSharedPtr<KoMacro::MacroItem> >::size_type sizetype; +typedef TQValueList< KSharedPtr<KoMacro::MacroItem> >::size_type sizetype; /****************************************************************************** * This is an xtra big TODO: @@ -117,9 +117,9 @@ void VariableTests::setUp() d->testaction = new TestAction(); ::KoMacro::Manager::self()->publishAction(d->testaction); - d->doomdocument = new QDomDocument(); + d->doomdocument = new TQDomDocument(); - QString const xml = QString("<!DOCTYPE macros>" + TQString const xml = TQString("<!DOCTYPE macros>" "<macro xmlversion=\"1\" >" "<item action=\"testaction\" >" "</item>" @@ -144,7 +144,7 @@ void VariableTests::testMacro() kdDebug()<<"===================== testMacro() ======================" << endl; //fetch Items and .. - QValueList< KSharedPtr<KoMacro::MacroItem> >& items = d->macro->items(); + TQValueList< KSharedPtr<KoMacro::MacroItem> >& items = d->macro->items(); //... check that there is one KOMACROTEST_XASSERT( items.count(), sizetype(0) ); @@ -152,7 +152,7 @@ void VariableTests::testMacro() void VariableTests::testVariableString() { kdDebug()<<"===================== testVariableString() ======================" << endl; - QValueList< KSharedPtr<KoMacro::MacroItem> >& items = d->macro->items(); + TQValueList< KSharedPtr<KoMacro::MacroItem> >& items = d->macro->items(); KSharedPtr<KoMacro::Action> actionptr = items[0]->action(); //fetch the "teststring"-variable @@ -173,19 +173,19 @@ void VariableTests::testVariableString() { //check that it is not null KOMACROTEST_XASSERT(sizetype(variableptr.data()), sizetype(0)); //check that it is "testString" - KOMACROTEST_ASSERT(variableptr->variant().toString(),QString("testString")); + KOMACROTEST_ASSERT(variableptr->variant().toString(),TQString("testString")); actionptr->setVariable("teststring", "STRINGTEST", "TestString"); variableptr = actionptr->variable("teststring"); //check that it is not null KOMACROTEST_XASSERT(sizetype(variableptr.data()), sizetype(0)); //check that it is " " - KOMACROTEST_ASSERT(variableptr->variant().toString(),QString("TestString")); + KOMACROTEST_ASSERT(variableptr->variant().toString(),TQString("TestString")); } void VariableTests::testVariableInt() { kdDebug()<<"===================== testVariableInt() ======================" << endl; - QValueList< KSharedPtr<KoMacro::MacroItem> >& items = d->macro->items(); + TQValueList< KSharedPtr<KoMacro::MacroItem> >& items = d->macro->items(); KSharedPtr<KoMacro::Action> actionptr = items[0]->action(); //fetch the "testint"-variable @@ -218,7 +218,7 @@ void VariableTests::testVariableInt() { void VariableTests::testVariableBool() { kdDebug()<<"===================== testVariableBool() ======================" << endl; - QValueList< KSharedPtr<KoMacro::MacroItem> >& items = d->macro->items(); + TQValueList< KSharedPtr<KoMacro::MacroItem> >& items = d->macro->items(); KSharedPtr<KoMacro::Action> actionptr = items[0]->action(); //fetch the "testbool"-variable |