summaryrefslogtreecommitdiffabout
path: root/libkcal/incidencebase.h
Side-by-side diff
Diffstat (limited to 'libkcal/incidencebase.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libkcal/incidencebase.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/libkcal/incidencebase.h b/libkcal/incidencebase.h
index 3edc03b..d97f524 100644
--- a/libkcal/incidencebase.h
+++ b/libkcal/incidencebase.h
@@ -27,4 +27,6 @@
#include <qstringlist.h>
-#include <qvaluelist.h>
-#include <qptrlist.h>
+#include <q3valuelist.h>
+#include <q3ptrlist.h>
+//Added by qt3to4:
+#include <Q3CString>
@@ -35,3 +37,3 @@ namespace KCal {
-typedef QValueList<QDate> DateList;
+typedef Q3ValueList<QDate> DateList;
enum IncTypeID { eventID,todoID,journalID,freebusyID };
@@ -53,3 +55,3 @@ class IncidenceBase : public CustomProperties
- virtual QCString type() const = 0;
+ virtual Q3CString type() const = 0;
virtual IncTypeID typeID() const = 0;
@@ -111,3 +113,3 @@ class IncidenceBase : public CustomProperties
/** Return list of attendees. */
- QPtrList<Attendee> attendees() const { return mAttendees; };
+ Q3PtrList<Attendee> attendees() const { return mAttendees; };
/** Return number of attendees. */
@@ -170,3 +172,3 @@ class IncidenceBase : public CustomProperties
QDateTime mLastModified;
- QPtrList<Attendee> mAttendees;
+ Q3PtrList<Attendee> mAttendees;
@@ -183,3 +185,3 @@ class IncidenceBase : public CustomProperties
- QPtrList<Observer> mObservers;
+ Q3PtrList<Observer> mObservers;
};