Monotone-Parent: d68d071f599a77e3065ac980ce7760c92c1abb05

Monotone-Revision: 470811187d8793ec8cd6a7fe191d59f4c0196056

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-06-12T18:54:28
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2007-06-12 18:54:28 +00:00
parent 6c3710cb53
commit ebae4c35f5
3 changed files with 4 additions and 9 deletions

View File

@ -1,5 +1,9 @@
2007-06-12 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Appointments/SOGoCalendarComponent.m
([SOGoCalendarComponent -init]): "isNew" is no longer defined
here, but rather in its parent class.
* UI/SOGoUI/SOGoDateFormatter.m ([SOGoDateFormatter
-stringForSecondsSinceThe70s:seconds]): new utility method.

View File

@ -38,13 +38,11 @@
{
iCalCalendar *calendar;
NSString *calContent;
BOOL isNew;
}
- (NSString *) componentTag;
- (iCalCalendar *) calendar: (BOOL) create;
- (iCalRepeatableEntityObject *) component: (BOOL) create;
- (BOOL) isNew;
- (NSException *) primarySaveContentString: (NSString *) _iCalString;
- (NSException *) primaryDelete;

View File

@ -71,7 +71,6 @@ static BOOL sendEMailNotifications = NO;
{
calendar = nil;
calContent = nil;
isNew = NO;
}
return self;
@ -183,7 +182,6 @@ static BOOL sendEMailNotifications = NO;
newComponent = [[calendar classForTag: componentTag]
groupWithTag: componentTag];
[calendar addChild: newComponent];
isNew = YES;
}
}
if (calendar)
@ -200,11 +198,6 @@ static BOOL sendEMailNotifications = NO;
firstChildWithTag: [self componentTag]];
}
- (BOOL) isNew
{
return isNew;
}
/* raw saving */
- (NSException *) primarySaveContentString: (NSString *) _iCalString