Monotone-Parent: d21cefd93fac803cfbe8968d3756327533467537

Monotone-Revision: b9cb79ce492de43bb8ad332eccb447d019e86cd5

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2008-08-09T15:21:19
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2008-08-09 15:21:19 +00:00
parent 846d28a2bf
commit eda164db06
3 changed files with 13 additions and 0 deletions
+4
View File
@@ -1,5 +1,9 @@
2008-08-09 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Appointments/SOGoComponentOccurence.m
([SOGoComponentOccurence -changeParticipationStatus:newPartStat]):
implemented proxy method.
* SoObjects/Appointments/SOGoCalendarComponent.m
([SOGoCalendarComponent
-sendEMailUsingTemplateNamed:_pageNameforOldObject:_oldObjectandNewObject:_newObjecttoAttendees:_attendees]):
@@ -51,6 +51,8 @@
- (void) setMasterComponent: (iCalRepeatableEntityObject *) newMaster;
- (void) setIsNew: (BOOL) newIsNew;
- (NSException *) changeParticipationStatus: (NSString *) newPartStat;
@end
#endif /* SOGOCOMPONENTOCCURENCE_H */
@@ -160,4 +160,11 @@
[container saveComponent: newEvent];
}
#warning most of SOGoCalendarComponent and SOGoComponentOccurence share the same external interface... \
they should be siblings or SOGoComponentOccurence the parent class of SOGoCalendarComponent...
- (NSException *) changeParticipationStatus: (NSString *) newPartStat
{
return [container changeParticipationStatus: newPartStat];
}
@end