summaryrefslogtreecommitdiffstats
path: root/libkcal/icalformatimpl.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-13 00:46:47 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-13 00:46:47 +0000
commit67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7 (patch)
tree5f52a9eada2e9f3654fc327d7c14dfef570a6ecb /libkcal/icalformatimpl.h
parent2ee4bf4fd5eff93b2fbef0ff8e8063edffc5da5c (diff)
downloadtdepim-67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7.tar.gz
tdepim-67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7.zip
Initial conversion of kdepim to TQt
This will probably require some tweaking before it will build under Qt4, however Qt3 builds are OK. Any alterations this commit makes to kdepim behaviour under Qt3 are unintentional and should be fixed. git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1227832 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkcal/icalformatimpl.h')
-rw-r--r--libkcal/icalformatimpl.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/libkcal/icalformatimpl.h b/libkcal/icalformatimpl.h
index 9a2e9f623..215adfe9b 100644
--- a/libkcal/icalformatimpl.h
+++ b/libkcal/icalformatimpl.h
@@ -46,7 +46,7 @@ class ICalFormatImpl
{
public:
/** Create new iCal format for calendar object */
- ICalFormatImpl( ICalFormat *parent );
+ ICalFormatImpl( ICalFormat *tqparent );
virtual ~ICalFormatImpl();
bool populate( Calendar *, icalcomponent *fs);
@@ -57,7 +57,7 @@ class ICalFormatImpl
icalcomponent *writeFreeBusy(FreeBusy *freebusy,
Scheduler::Method method = Scheduler::Publish );
icalcomponent *writeJournal(Journal *journal);
- void writeIncidence(icalcomponent *parent,Incidence *incidence);
+ void writeIncidence(icalcomponent *tqparent,Incidence *incidence);
icalproperty *writeAttendee(Attendee *attendee);
icalproperty *writeOrganizer( const Person &organizer );
icalproperty *writeAttachment(Attachment *attach);
@@ -73,7 +73,7 @@ class ICalFormatImpl
Attendee *readAttendee(icalproperty *attendee);
Person readOrganizer( icalproperty *organizer );
Attachment *readAttachment(icalproperty *attach);
- void readIncidence(icalcomponent *parent, icaltimezone *timezone, Incidence *incidence);
+ void readIncidence(icalcomponent *tqparent, icaltimezone *timezone, Incidence *incidence);
void readRecurrenceRule(icalproperty *rrule,Incidence *event );
void readExceptionRule( icalproperty *rrule, Incidence *incidence );
void readRecurrence( const struct icalrecurrencetype &r, RecurrenceRule* recur );
@@ -96,10 +96,10 @@ class ICalFormatImpl
protected:
void dumpIcalRecurrence(icalrecurrencetype);
private:
- void writeIncidenceBase(icalcomponent *parent,IncidenceBase *);
- void readIncidenceBase(icalcomponent *parent, IncidenceBase *);
- void writeCustomProperties(icalcomponent *parent,CustomProperties *);
- void readCustomProperties(icalcomponent *parent,CustomProperties *);
+ void writeIncidenceBase(icalcomponent *tqparent,IncidenceBase *);
+ void readIncidenceBase(icalcomponent *tqparent, IncidenceBase *);
+ void writeCustomProperties(icalcomponent *tqparent,CustomProperties *);
+ void readCustomProperties(icalcomponent *tqparent,CustomProperties *);
void readTimezone(icalcomponent *vtimezone);
ICalFormat *mParent;