mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-06 08:55:08 +00:00
Monotone-Parent: ce32e1242b761204db803e0d285c6df7dac31cfb
Monotone-Revision: c26a4cd6f1b197f62132a741a9db02e3ec7994ee Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2008-07-14T15:14:40 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -35,16 +35,16 @@
|
||||
NSMutableArray *ma;
|
||||
unsigned int i, count;
|
||||
NSString *valuesString;
|
||||
iCalRecurrenceRule *rule;
|
||||
|
||||
ma = nil;
|
||||
|
||||
count = [rules count];
|
||||
if (count > 0)
|
||||
{
|
||||
ma = [NSMutableArray arrayWithCapacity:count];
|
||||
ma = [NSMutableArray arrayWithCapacity: count];
|
||||
for (i = 0; i < count; i++)
|
||||
{
|
||||
iCalRecurrenceRule *rule;
|
||||
|
||||
rule = [rules objectAtIndex:i];
|
||||
#warning we could return an NSArray instead and feed it as such to the iCalRecurrenceRule in SOGoAppointmentFolder...
|
||||
valuesString = [[rule values] componentsJoinedByString: @";"];
|
||||
@@ -73,9 +73,9 @@
|
||||
rules = [self _indexedRules: [self exceptionRules]];
|
||||
if (rules)
|
||||
[cycleInfo setObject: rules forKey: @"exRules"];
|
||||
|
||||
rules = [self _indexedRules: [self exceptionDates]];
|
||||
if (rules)
|
||||
|
||||
rules = [self exceptionDates];
|
||||
if ([rules count])
|
||||
[cycleInfo setObject: rules forKey: @"exDates"];
|
||||
|
||||
value = [cycleInfo description];
|
||||
|
||||
Reference in New Issue
Block a user