summaryrefslogtreecommitdiffstats
path: root/kresources/newexchange/exchangeconvertercalendar.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 /kresources/newexchange/exchangeconvertercalendar.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 'kresources/newexchange/exchangeconvertercalendar.h')
-rw-r--r--kresources/newexchange/exchangeconvertercalendar.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/kresources/newexchange/exchangeconvertercalendar.h b/kresources/newexchange/exchangeconvertercalendar.h
index 346b2a95..a561d0cd 100644
--- a/kresources/newexchange/exchangeconvertercalendar.h
+++ b/kresources/newexchange/exchangeconvertercalendar.h
@@ -21,8 +21,8 @@
#ifndef KCal_EXCHANGECONVERTERCONTACT_H
#define KCal_EXCHANGECONVERTERCONTACT_H
-#include <qstring.h>
-#include <qdom.h>
+#include <tqstring.h>
+#include <tqdom.h>
#include <libkcal/incidence.h>
#include <libkcal/icalformat.h>
@@ -36,23 +36,23 @@ class ExchangeConverterCalendar
ExchangeConverterCalendar();
- void setTimeZone( const QString &id );
+ void setTimeZone( const TQString &id );
- static void createRequestAppointment( QDomDocument &doc, QDomElement &root );
- static void createRequestTask( QDomDocument &doc, QDomElement &root );
- static void createRequestJournal( QDomDocument &doc, QDomElement &root );
+ static void createRequestAppointment( TQDomDocument &doc, TQDomElement &root );
+ static void createRequestTask( TQDomDocument &doc, TQDomElement &root );
+ static void createRequestJournal( TQDomDocument &doc, TQDomElement &root );
- QDomDocument createWebDAV( Incidence *incidence );
+ TQDomDocument createWebDAV( Incidence *incidence );
- Incidence::List parseWebDAV( const QDomDocument& davdata );
- bool readIncidence( const QDomElement &node, Incidence *incidence );
+ Incidence::List parseWebDAV( const TQDomDocument& davdata );
+ bool readIncidence( const TQDomElement &node, Incidence *incidence );
protected:
- static void createRequestIncidence( QDomDocument &doc, QDomElement &root );
- bool readEvent( const QDomElement &node, Event *event );
- bool readTodo( const QDomElement &node, Todo *todo );
- bool readJournal( const QDomElement &node, Journal *journal );
- bool readTZ( const QDomElement &node, Incidence *incidence );
+ static void createRequestIncidence( TQDomDocument &doc, TQDomElement &root );
+ bool readEvent( const TQDomElement &node, Event *event );
+ bool readTodo( const TQDomElement &node, Todo *todo );
+ bool readJournal( const TQDomElement &node, Journal *journal );
+ bool readTZ( const TQDomElement &node, Incidence *incidence );
KCal::ICalFormat mFormat;
class createWebDAVVisitor;