mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-22 03:45:25 +00:00
See ChangeLog
Monotone-Parent: 9020396dd6a24f133f8a6ae82a6958bfdfe53ded Monotone-Revision: c3418cb8dc92a811cb6b1d3b583d6ffd09d6bd4d Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2009-10-19T21:19:50 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
2009-10-19 Francis Lachapelle <flachapelle@inverse.ca>
|
||||
|
||||
* SoObjects/SOGo/NSCalendarDate+SOGo.m: lower the values of
|
||||
secondsOfDistantFuture and secondsOfDistantPast to solve a problem
|
||||
with 64bit environment.
|
||||
|
||||
* UI/Scheduler/UIxAppointmentEditor.m
|
||||
(-startDateIsEqualToEndDate): new method that returns whether or
|
||||
not the start date is identical to the end date (used for all-day events).
|
||||
|
||||
@@ -113,8 +113,9 @@ static NSString *rfc822Months[] = {@"", @"Jan", @"Feb", @"Mar", @"Apr",
|
||||
timeZoneShift];
|
||||
}
|
||||
|
||||
#define secondsOfDistantFuture 63113990400.0
|
||||
#define secondsOfDistantPast -63113817600.0
|
||||
#define secondsOfDistantFuture 1073741823.0
|
||||
#define secondsOfDistantPast -1073741823.0
|
||||
|
||||
|
||||
+ (id) distantFuture
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user