summaryrefslogtreecommitdiffstats
path: root/libkcal/scheduler.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 /libkcal/scheduler.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 'libkcal/scheduler.h')
-rw-r--r--libkcal/scheduler.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/libkcal/scheduler.h b/libkcal/scheduler.h
index 0aa4b366..17e19ec4 100644
--- a/libkcal/scheduler.h
+++ b/libkcal/scheduler.h
@@ -21,8 +21,8 @@
#ifndef KCAL_SCHEDULER_H
#define KCAL_SCHEDULER_H
-#include <qstring.h>
-#include <qptrlist.h>
+#include <tqstring.h>
+#include <tqptrlist.h>
#include "libkcal_export.h"
@@ -72,18 +72,18 @@ class ScheduleMessage
/**
Return error message if there is any.
*/
- QString error() { return mError; }
+ TQString error() { return mError; }
/**
Return a human-readable name for an iTIP message status.
*/
- static QString statusName( Status status );
+ static TQString statusName( Status status );
private:
IncidenceBase *mIncidence;
int mMethod;
Status mStatus;
- QString mError;
+ TQString mError;
class Private;
Private *d;
@@ -113,7 +113,7 @@ class LIBKCAL_EXPORT Scheduler
iTIP publish action
*/
virtual bool publish( IncidenceBase *incidence,
- const QString &recipients ) = 0;
+ const TQString &recipients ) = 0;
/**
Perform iTIP transaction on incidence. The method is specified as the
method argument and can be any valid iTIP method.
@@ -126,11 +126,11 @@ class LIBKCAL_EXPORT Scheduler
method.
*/
virtual bool performTransaction( IncidenceBase *incidence, Method method,
- const QString &recipients ) = 0;
+ const TQString &recipients ) = 0;
/**
Retrieve incoming iTIP transactions.
*/
- virtual QPtrList<ScheduleMessage> retrieveTransactions() = 0;
+ virtual TQPtrList<ScheduleMessage> retrieveTransactions() = 0;
/**
Accept transaction. The incidence argument specifies the iCal compoennt
@@ -144,18 +144,18 @@ class LIBKCAL_EXPORT Scheduler
/**
Return a machine-readable name for a iTIP method.
*/
- static QString methodName( Method );
+ static TQString methodName( Method );
/**
Return a translated human-readable name for a iTIP method.
*/
- static QString translatedMethodName( Method );
+ static TQString translatedMethodName( Method );
virtual bool deleteTransaction( IncidenceBase *incidence );
/**
Returns the directory where the free-busy information is stored.
*/
- virtual QString freeBusyDir() = 0;
+ virtual TQString freeBusyDir() = 0;
/**
Set free/busy cache used to store free/busy information.