See SOPE/NGCards/ChangeLog

Monotone-Parent: c4ccff8062153bbdf5f6cb2b916a3d927df78a6b
Monotone-Revision: 683b1b4ca76fe2ce7466ee989977f39eeab86856

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2010-10-28T16:33:47
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Francis Lachapelle 2010-10-28 16:33:47 +00:00
parent 36638e28a5
commit 56b22dc228
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-10-28 Francis Lachapelle <flachapelle@inverse.ca>
* iCalRecurrenceRule.m (-isInfinite): a repeat count set to 0 is
no longer consider a limit (ie, isInfinite will be true).
2010-10-27 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* NGVCard.m (-setCategories): make use of the new method below.

View File

@ -514,7 +514,7 @@ NSString *iCalWeekDayString[] = { @"SU", @"MO", @"TU", @"WE", @"TH", @"FR",
- (BOOL) isInfinite
{
return !([self repeatCount] || [self untilDate]);
return !(([self repeatCount] && [self repeatCount] > 0) || [self untilDate]);
}
/* private */