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:
Francis Lachapelle
2009-10-19 21:19:50 +00:00
parent fd2e4c6659
commit 7344e4d038
2 changed files with 7 additions and 2 deletions
+4
View File
@@ -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).
+3 -2
View File
@@ -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
{