diff options
Diffstat (limited to 'kpilot/lib/idmapperxml.h')
-rw-r--r-- | kpilot/lib/idmapperxml.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/kpilot/lib/idmapperxml.h b/kpilot/lib/idmapperxml.h index 455673888..87c912379 100644 --- a/kpilot/lib/idmapperxml.h +++ b/kpilot/lib/idmapperxml.h @@ -27,15 +27,15 @@ #include "idmapping.h" -#include <qxml.h> -#include <qdom.h> -#include <qstring.h> -#include <qptrcollection.h> +#include <tqxml.h> +#include <tqdom.h> +#include <tqstring.h> +#include <tqptrcollection.h> class IDMapperXml : public QXmlDefaultHandler { public: - IDMapperXml( const QString &file ); + IDMapperXml( const TQString &file ); ~IDMapperXml(); @@ -59,26 +59,26 @@ public: /** * Returns the collection of mappings. */ - QValueList<IDMapping> &mappings(); + TQValueList<IDMapping> &mappings(); /** * Overloaded function to parse the xml file. */ - bool startElement( const QString &namespaceURI, const QString &localName - , const QString &qName, const QXmlAttributes &attribs ); + bool startElement( const TQString &namespaceURI, const TQString &localName + , const TQString &qName, const TQXmlAttributes &attribs ); /** * Overloaded function to parse the xml file. */ - bool endElement( const QString &namespaceURI, const QString &localName - , const QString &qName ); + bool endElement( const TQString &namespaceURI, const TQString &localName + , const TQString &qName ); private: - QFile fFile; - QDomDocument doc; - QDomElement root; + TQFile fFile; + TQDomDocument doc; + TQDomElement root; IDMapping *fCurrentMapping; - QValueList<IDMapping> fMappings; + TQValueList<IDMapping> fMappings; }; #endif |