diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | 36a36a5c1015aa0d03f4515c401e907ddb9d6291 (patch) | |
tree | 0212ba6d2c749043134005a41f2bd0379619d40f /libkcal/icalformatimpl.h | |
parent | 4c6f8d69e2d1501837affb472c4eb8fec4462240 (diff) | |
download | tdepim-36a36a5c1015aa0d03f4515c401e907ddb9d6291.tar.gz tdepim-36a36a5c1015aa0d03f4515c401e907ddb9d6291.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkcal/icalformatimpl.h')
-rw-r--r-- | libkcal/icalformatimpl.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libkcal/icalformatimpl.h b/libkcal/icalformatimpl.h index 215adfe9..9a2e9f62 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 *tqparent ); + ICalFormatImpl( ICalFormat *parent ); 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 *tqparent,Incidence *incidence); + void writeIncidence(icalcomponent *parent,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 *tqparent, icaltimezone *timezone, Incidence *incidence); + void readIncidence(icalcomponent *parent, 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 *tqparent,IncidenceBase *); - void readIncidenceBase(icalcomponent *tqparent, IncidenceBase *); - void writeCustomProperties(icalcomponent *tqparent,CustomProperties *); - void readCustomProperties(icalcomponent *tqparent,CustomProperties *); + void writeIncidenceBase(icalcomponent *parent,IncidenceBase *); + void readIncidenceBase(icalcomponent *parent, IncidenceBase *); + void writeCustomProperties(icalcomponent *parent,CustomProperties *); + void readCustomProperties(icalcomponent *parent,CustomProperties *); void readTimezone(icalcomponent *vtimezone); ICalFormat *mParent; |