mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-22 03:45:25 +00:00
Monotone-Parent: f085237afac89a09ecf165389cb0c7d9a516fcc0
Monotone-Revision: b96cf9f7f8e81877010f125e9a16155d61add506 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2008-01-23T03:44:51 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2008-01-22 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* iCalRecurrenceRule.m ([iCalRecurrenceRule -repeatInterval]):
|
||||
return 1 if the parsed value is < 1.
|
||||
|
||||
2007-12-20 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* NSString+NGCards.m ([NSString
|
||||
|
||||
@@ -237,7 +237,13 @@
|
||||
|
||||
- (int) repeatInterval
|
||||
{
|
||||
return [[self namedValue: @"interval"] intValue];
|
||||
int interval;
|
||||
|
||||
interval = [[self namedValue: @"interval"] intValue];
|
||||
if (interval < 1)
|
||||
interval = 1;
|
||||
|
||||
return interval;
|
||||
}
|
||||
|
||||
- (void) setWkst: (NSString *) _weekStart
|
||||
|
||||
Reference in New Issue
Block a user