diff --git a/ChangeLog b/ChangeLog index a08db92b7..6855ce4cb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-04-27 Francis Lachapelle + + * UI/Scheduler/UIxCalListingActions.m ([UIxCalListingActions + -_fillBlocks:withEvent:withNumber:]:): fixed index of recurrence + ID. + 2009-04-22 Francis Lachapelle * UI/Scheduler/UIxCalListingActions.m ([UIxCalListingActions diff --git a/UI/Scheduler/UIxCalListingActions.m b/UI/Scheduler/UIxCalListingActions.m index 15fc808f4..f49576ab8 100644 --- a/UI/Scheduler/UIxCalListingActions.m +++ b/UI/Scheduler/UIxCalListingActions.m @@ -592,8 +592,8 @@ _userStateInEvent (NSArray *event) eventStart = [[event objectAtIndex: 4] unsignedIntValue]; eventEnd = [[event objectAtIndex: 5] unsignedIntValue]; - if ([[event objectAtIndex: 12] boolValue]) - recurrenceTime = [[event objectAtIndex: 13] unsignedIntValue]; + if ([[event objectAtIndex: 12] boolValue]) // c_iscycle + recurrenceTime = [[event objectAtIndex: 14] unsignedIntValue]; // c_recurrence_id else recurrenceTime = 0;