diff options
Diffstat (limited to 'kexi/plugins/macros/tests/xmlhandlertests.h')
-rw-r--r-- | kexi/plugins/macros/tests/xmlhandlertests.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/kexi/plugins/macros/tests/xmlhandlertests.h b/kexi/plugins/macros/tests/xmlhandlertests.h index c78a8c79..3e67742f 100644 --- a/kexi/plugins/macros/tests/xmlhandlertests.h +++ b/kexi/plugins/macros/tests/xmlhandlertests.h @@ -31,6 +31,7 @@ namespace KoMacroTest { class XMLHandlerTests : public KUnitTest::SlotTester { Q_OBJECT + TQ_OBJECT public: /** @@ -71,23 +72,23 @@ namespace KoMacroTest { /** * Compares a XML-Element with a Macro. Call sub-asserts. * @p macro The parsen @a Macro. - * @p domelement The given @a QDomElement which is parsen. + * @p domelement The given @a TQDomElement which is parsen. * @p isitemsempty Bool for expectation of an empty @a MacroItem -List. * @p isactionset Bool for expectation that the @a Action -names are equal. - * @p isvariableok QMap of Bools for comparing each @a Variable . + * @p isvariableok TQMap of Bools for comparing each @a Variable . */ void assertMacroContentEqToXML(const KSharedPtr<KoMacro::Macro> macro, - const QDomElement& elem, + const TQDomElement& elem, const bool isitemsempty, const bool isactionset, - const QMap<QString, bool> isvariableok); + const TQMap<TQString, bool> isvariableok); - // Prints a QMap of Variables to kdDebug(). - void printMvariables(const QMap<QString, KSharedPtr<KoMacro::Variable > > mvariables, const QString s); + // Prints a TQMap of Variables to kdDebug(). + void printMvariables(const TQMap<TQString, KSharedPtr<KoMacro::Variable > > mvariables, const TQString s); /** * Sub-methods of testParseXML() and testToXML(). - * Test the correct parsing of a @a QDomElement into a @a Macro + * Test the correct parsing of a @a TQDomElement into a @a Macro * respectively expected failure of parsing. Then transform it * back and compare it. */ |