Monotone-Parent: 7821d954a61c74202db6dc567f80fc43d2004466

Monotone-Revision: 41c549a27b33b99df942c4323fe0f13a3685b452

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-06-12T15:37:58
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-06-12 15:37:58 +00:00
parent 444a28376d
commit 620dcbf31c
2 changed files with 7 additions and 8 deletions

View File

@@ -1,5 +1,10 @@
2007-06-12 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/Scheduler/UIxCalListingActions.m ([UIxCalListingActions
-eventsListAction]): no longer reduce the end day of one day for
all day events since everything has been fixed in
OCSiCalFieldExtractor.
* OGoContentStore/OCSiCalFieldExtractor.m ([OCSiCalFieldExtractor
-extractQuickFieldsFromEvent:_event]): reduce the seconds/70 of
the end date of all day events of 1 so that they stay on their

View File

@@ -317,16 +317,10 @@
{
newEvent = [NSMutableArray arrayWithArray: oldEvent];
interval = [[oldEvent objectAtIndex: 4] intValue];
date
= [dateFormatter stringForObjectValue:
[NSCalendarDate dateWithTimeIntervalSince1970: interval]];
date = [dateFormatter stringForSecondsSinceThe70s: interval];
[newEvent addObject: date];
interval = [[oldEvent objectAtIndex: 5] intValue];
if ([[oldEvent objectAtIndex: 7] boolValue])
interval -= 86400;
date
= [dateFormatter stringForObjectValue:
[NSCalendarDate dateWithTimeIntervalSince1970: interval]];
date = [dateFormatter stringForSecondsSinceThe70s: interval];
[newEvent addObject: date];
[newEvents addObject: newEvent];