Implement stubs for SOGoCalendarComponent::isNew and SOGoCalendarComponent::setIsNew methods.

Those are required to implement the SOGoComponentOccurence protocol hence
their absence creates compilation warnings.
This commit is contained in:
Patrice Levesque
2016-03-07 10:34:40 -05:00
parent 0b1cf9faaf
commit 3ba0e9f82f
@@ -130,6 +130,25 @@
return aclManager;
}
- (void) setIsNew: (BOOL) newIsNew
{
// Required for protocol <SOGoComponentOccurence>
// but not yet implemented. Violently warn if
// used.
NSLog (@"SOGoCalendarComponent::setIsNew is not implemented.");
abort();
}
- (BOOL) isNew
{
// Required for protocol <SOGoComponentOccurence>
// but not yet implemented. Violently warn if
// used.
NSLog (@"SOGoCalendarComponent::isNew is not implemented.");
abort();
return false;
}
- (NSException *) changeParticipationStatus: (NSString *) newPartStat
withDelegate: (iCalPerson *) delegate
alarm: (iCalAlarm *) alarm