-rw-r--r-- | libkcal/imipscheduler.cpp | 6 |
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 | |||
@@ -1,58 +1,60 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of libkcal. | 2 | This file is part of libkcal. |
3 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> | 3 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> |
4 | 4 | ||
5 | This library is free software; you can redistribute it and/or | 5 | This library is free software; you can redistribute it and/or |
6 | modify it under the terms of the GNU Library General Public | 6 | modify it under the terms of the GNU Library General Public |
7 | License as published by the Free Software Foundation; either | 7 | License as published by the Free Software Foundation; either |
8 | version 2 of the License, or (at your option) any later version. | 8 | version 2 of the License, or (at your option) any later version. |
9 | 9 | ||
10 | This library is distributed in the hope that it will be useful, | 10 | This library is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 | Library General Public License for more details. | 13 | Library General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU Library General Public License | 15 | You should have received a copy of the GNU Library General Public License |
16 | along with this library; see the file COPYING.LIB. If not, write to | 16 | along with this library; see the file COPYING.LIB. If not, write to |
17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
18 | Boston, MA 02111-1307, USA. | 18 | Boston, MA 02111-1307, USA. |
19 | */ | 19 | */ |
20 | 20 | ||
21 | // | 21 | // |
22 | // IMIPScheduler - iMIP implementation of iTIP methods | 22 | // IMIPScheduler - iMIP implementation of iTIP methods |
23 | // | 23 | // |
24 | 24 | ||
25 | #include "event.h" | 25 | #include "event.h" |
26 | #include "icalformat.h" | 26 | #include "icalformat.h" |
27 | 27 | ||
28 | #include "imipscheduler.h" | 28 | #include "imipscheduler.h" |
29 | //Added by qt3to4: | ||
30 | #include <Q3PtrList> | ||
29 | 31 | ||
30 | using namespace KCal; | 32 | using namespace KCal; |
31 | 33 | ||
32 | IMIPScheduler::IMIPScheduler(Calendar *calendar) | 34 | IMIPScheduler::IMIPScheduler(Calendar *calendar) |
33 | : Scheduler(calendar) | 35 | : Scheduler(calendar) |
34 | { | 36 | { |
35 | } | 37 | } |
36 | 38 | ||
37 | IMIPScheduler::~IMIPScheduler() | 39 | IMIPScheduler::~IMIPScheduler() |
38 | { | 40 | { |
39 | } | 41 | } |
40 | 42 | ||
41 | bool IMIPScheduler::publish (IncidenceBase *incidence,const QString &recipients) | 43 | bool IMIPScheduler::publish (IncidenceBase *incidence,const QString &recipients) |
42 | { | 44 | { |
43 | return false; | 45 | return false; |
44 | } | 46 | } |
45 | 47 | ||
46 | bool IMIPScheduler::performTransaction(IncidenceBase *incidence,Method method) | 48 | bool IMIPScheduler::performTransaction(IncidenceBase *incidence,Method method) |
47 | { | 49 | { |
48 | mFormat->createScheduleMessage(incidence,method); | 50 | mFormat->createScheduleMessage(incidence,method); |
49 | 51 | ||
50 | return false; | 52 | return false; |
51 | } | 53 | } |
52 | 54 | ||
53 | QPtrList<ScheduleMessage> IMIPScheduler::retrieveTransactions() | 55 | Q3PtrList<ScheduleMessage> IMIPScheduler::retrieveTransactions() |
54 | { | 56 | { |
55 | QPtrList<ScheduleMessage> messageList; | 57 | Q3PtrList<ScheduleMessage> messageList; |
56 | 58 | ||
57 | return messageList; | 59 | return messageList; |
58 | } | 60 | } |