mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-05 05:18:51 +00:00
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:
@@ -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
|
||||
|
||||
@@ -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];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user