mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-02-28 20:56:24 +00:00
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
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user