summaryrefslogtreecommitdiffabout
path: root/libkcal/imipscheduler.cpp
Side-by-side diff
Diffstat (limited to 'libkcal/imipscheduler.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libkcal/imipscheduler.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/libkcal/imipscheduler.cpp b/libkcal/imipscheduler.cpp
index e186f8e..e6d56a6 100644
--- a/libkcal/imipscheduler.cpp
+++ b/libkcal/imipscheduler.cpp
@@ -17,42 +17,44 @@
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
//
// IMIPScheduler - iMIP implementation of iTIP methods
//
#include "event.h"
#include "icalformat.h"
#include "imipscheduler.h"
+//Added by qt3to4:
+#include <Q3PtrList>
using namespace KCal;
IMIPScheduler::IMIPScheduler(Calendar *calendar)
: Scheduler(calendar)
{
}
IMIPScheduler::~IMIPScheduler()
{
}
bool IMIPScheduler::publish (IncidenceBase *incidence,const QString &recipients)
{
return false;
}
bool IMIPScheduler::performTransaction(IncidenceBase *incidence,Method method)
{
mFormat->createScheduleMessage(incidence,method);
return false;
}
-QPtrList<ScheduleMessage> IMIPScheduler::retrieveTransactions()
+Q3PtrList<ScheduleMessage> IMIPScheduler::retrieveTransactions()
{
- QPtrList<ScheduleMessage> messageList;
+ Q3PtrList<ScheduleMessage> messageList;
return messageList;
}