Monotone-Parent: 004c366d96118af36568a9b13190353c7241a94c

Monotone-Revision: 1acbcf80ee191c82fc00ca17699bd2e85a2166d3

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-11-02T22:03:09
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2006-11-02 22:03:09 +00:00
parent 9b97b0da4d
commit 3c23f9c7fe
6 changed files with 46 additions and 60 deletions
+4 -9
View File
@@ -425,6 +425,7 @@ static BOOL shouldDisplayWeekend = NO;
{
return [self selectedDate];
}
- (NSCalendarDate *) endDate
{
return [[self startDate] tomorrow];
@@ -432,15 +433,9 @@ static BOOL shouldDisplayWeekend = NO;
- (NSArray *) _fetchCoreInfosForComponent: (NSString *) component
{
SOGoAppointmentFolder *folder;
NSCalendarDate *sd, *ed;
folder = [self clientObject];
sd = [self startDate];
ed = [self endDate];
return [folder fetchCoreInfosFrom: sd to: ed
component: component];
return [[self clientObject] fetchCoreInfosFrom: [[self startDate] beginOfDay]
to: [[self endDate] endOfDay]
component: component];
}
- (NSArray *) fetchCoreAppointmentsInfos