-rw-r--r-- | libkcal/event.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libkcal/event.h b/libkcal/event.h index 6a58618..da44f81 100644 --- a/libkcal/event.h +++ b/libkcal/event.h | |||
@@ -20,32 +20,34 @@ | |||
20 | 20 | ||
21 | #ifndef EVENT_H | 21 | #ifndef EVENT_H |
22 | #define EVENT_H | 22 | #define EVENT_H |
23 | // | 23 | // |
24 | // Event component, representing a VEVENT object | 24 | // Event component, representing a VEVENT object |
25 | // | 25 | // |
26 | 26 | ||
27 | #include "incidence.h" | 27 | #include "incidence.h" |
28 | //Added by qt3to4: | ||
29 | #include <Q3CString> | ||
28 | namespace KCal { | 30 | namespace KCal { |
29 | 31 | ||
30 | /** | 32 | /** |
31 | This class provides an Event in the sense of RFC2445. | 33 | This class provides an Event in the sense of RFC2445. |
32 | */ | 34 | */ |
33 | class Event : public Incidence | 35 | class Event : public Incidence |
34 | { | 36 | { |
35 | public: | 37 | public: |
36 | enum Transparency { Opaque, Transparent }; | 38 | enum Transparency { Opaque, Transparent }; |
37 | typedef ListBase<Event> List; | 39 | typedef ListBase<Event> List; |
38 | Event(); | 40 | Event(); |
39 | Event(const Event &); | 41 | Event(const Event &); |
40 | ~Event(); | 42 | ~Event(); |
41 | bool matchTime(QDateTime*startDT, QDateTime* endDT); | 43 | bool matchTime(QDateTime*startDT, QDateTime* endDT); |
42 | 44 | ||
43 | QCString type() const { return "Event"; } | 45 | Q3CString type() const { return "Event"; } |
44 | IncTypeID typeID() const { return eventID; } | 46 | IncTypeID typeID() const { return eventID; } |
45 | 47 | ||
46 | Incidence *clone(); | 48 | Incidence *clone(); |
47 | QDateTime getNextAlarmDateTime( bool * ok, int * offset ,QDateTime start_dt ) const; | 49 | QDateTime getNextAlarmDateTime( bool * ok, int * offset ,QDateTime start_dt ) const; |
48 | 50 | ||
49 | /** for setting an event's ending date/time with a QDateTime. */ | 51 | /** for setting an event's ending date/time with a QDateTime. */ |
50 | void setDtEnd(const QDateTime &dtEnd); | 52 | void setDtEnd(const QDateTime &dtEnd); |
51 | /** Return the event's ending date/time as a QDateTime. */ | 53 | /** Return the event's ending date/time as a QDateTime. */ |