See ChangeLog

Monotone-Parent: b11b40d1a73231b76eb4bb1ce04046646f40d52f
Monotone-Revision: dd31e8f881d1c923d951b3c5ddf9a90c986c2165

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2009-03-19T16:49:36
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle
2009-03-19 16:49:36 +00:00
parent bfdf897b30
commit 7d817dcb9b
2 changed files with 11 additions and 5 deletions

View File

@@ -1,3 +1,9 @@
2009-03-19 Francis Lachapelle <flachapelle@inverse.ca>
* UI/Scheduler/UIxCalListingActions.m ([UIxCalListingActions
-_fetchFields:forComponentOfType:]): the _fixDates method doesn't
have to be called for the month view.
2009-03-19 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/SOGoUser.m ([SOGoUser

View File

@@ -327,9 +327,10 @@ static NSArray *tasksFields = nil;
forKey: @"c_owner"];
if (![[newInfo objectForKey: @"c_title"] length])
[self _fixComponentTitle: newInfo withType: component];
// Possible improvement: only call _fixDates if event is recurrent
// or the view range span a daylight saving time change
[self _fixDates: newInfo];
if (dayBasedView)
// Possible improvement: only call _fixDates if event is recurrent
// or the view range span a daylight saving time change
[self _fixDates: newInfo];
[infos addObject: [newInfo objectsForKeys: fields
notFoundMarker: marker]];
}
@@ -800,8 +801,7 @@ _computeBlocksPosition (NSArray *blocks)
event = [events objectAtIndex: count];
eventNbr = [NSNumber numberWithUnsignedInt: count];
if (dayBasedView && [[event objectAtIndex: 7] boolValue])
[self _fillBlocks: allDayBlocks
withEvent: event withNumber: eventNbr];
[self _fillBlocks: allDayBlocks withEvent: event withNumber: eventNbr];
else
[self _fillBlocks: blocks withEvent: event withNumber: eventNbr];
}