diff options
Diffstat (limited to 'kresources/caldav/resource.h')
-rw-r--r-- | kresources/caldav/resource.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/kresources/caldav/resource.h b/kresources/caldav/resource.h index b81e555c5..deba22b72 100644 --- a/kresources/caldav/resource.h +++ b/kresources/caldav/resource.h @@ -18,8 +18,8 @@ #define KCAL_RESOURCECALDAV_H #include "preferences.h" -#include <qthread.h> -#include <qptrqueue.h> +#include <tqthread.h> +#include <tqptrqueue.h> #include <libkcal/resourcecached.h> #include <libkdepim/progressmanager.h> @@ -84,14 +84,14 @@ protected slots: protected: struct LoadingTask { - QString url; + TQString url; }; struct WritingTask { - QString url; - QString added; - QString changed; - QString deleted; + TQString url; + TQString added; + TQString changed; + TQString deleted; }; @@ -127,35 +127,35 @@ protected: * Initiates calendar loading process. * @param url URL to load calendar data from. */ - void startLoading(const QString& url); + void startLoading(const TQString& url); /** * Checks if the data is correct and can be parsed. * @param data ical string to check. * @return true if the data is correct, false otherwise. */ - bool checkData(const QString& data); + bool checkData(const TQString& data); /** * Parses the data and adds events to the calendar. * @param data calendar data. * @return true on success, false on fail. */ - bool parseData(const QString& data); + bool parseData(const TQString& data); /** * Initiates calendar writing process. * @param url URL to save calendar data to. * @return true if write was queued successfully, false if not */ - bool startWriting(const QString& url); + bool startWriting(const TQString& url); /** * Returns a list of incidences as a valid iCalendar string. * @param inc list of incidences. * @return a string in iCalendar format which describes the given incidences. */ - QString getICalString(const Incidence::List& inc); + TQString getICalString(const Incidence::List& inc); /** * Changes read-only status of incidences from a given list. @@ -193,7 +193,7 @@ protected: */ void writingQueuePush(const WritingTask *task); - virtual bool event ( QEvent * e ); + virtual bool event ( TQEvent * e ); private: @@ -224,12 +224,12 @@ private: KPIM::ProgressItem *mProgress; bool mLoadingQueueReady; - QPtrQueue<LoadingTask> mLoadingQueue; + TQPtrQueue<LoadingTask> mLoadingQueue; bool mWritingQueueReady; - QPtrQueue<WritingTask> mWritingQueue; + TQPtrQueue<WritingTask> mWritingQueue; - QTimer *mWriteRetryTimer; + TQTimer *mWriteRetryTimer; }; |