summaryrefslogtreecommitdiffstats
path: root/kpilot/lib/idmapperxml.h
diff options
context:
space:
mode:
Diffstat (limited to 'kpilot/lib/idmapperxml.h')
-rw-r--r--kpilot/lib/idmapperxml.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/kpilot/lib/idmapperxml.h b/kpilot/lib/idmapperxml.h
index 45567388..87c91237 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