Monotone-Parent: 3a3837b97a228bb1e5d1e55f692eaaded56ed2f7

Monotone-Revision: 84ef38aac8dcb308bcabb407f3172c53ac0f05b2

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2009-03-24T13:45:46
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2009-03-24 13:45:46 +00:00
parent 39cfaae6ec
commit 8aadf63f82
3 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,14 @@
2009-03-24 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* iCalWeeklyRecurrenceCalculator.m
([iCalWeeklyRecurrenceCalculator
-recurrenceRangesWithinCalendarDateRange:_r]): same as below.
* iCalDailyRecurrenceCalculator.m ([iCalDailyRecurrenceCalculator
-recurrenceRangesWithinCalendarDateRange:_r]): autorelease
currentStartDate when instantiated from a copy of firDate, to
avoid a leak.
2009-02-06 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* CardElement.m ([CardElement -setParent:aParent]): no longer

View File

@ -80,6 +80,7 @@
}
currentStartDate = [firStart copy];
[currentStartDate autorelease];
ranges = [NSMutableArray array];
i = 1;

View File

@ -87,6 +87,7 @@
}
currentStartDate = [firStart copy];
[currentStartDate autorelease];
ranges = [NSMutableArray array];
byDayMask = [rrule byDayMask];
i = 1;