summaryrefslogtreecommitdiffstats
path: root/kpilot/lib/idmapperxml.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /kpilot/lib/idmapperxml.h
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz
tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 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