From 3a1dab1f335412322a4a5c8b3d0af80c3dedf5ba Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Mon, 27 Apr 2009 15:28:51 +0000 Subject: [PATCH] See ChangeLog Monotone-Parent: 069d5a277053f95c29a92bbfee86bb80f5286191 Monotone-Revision: 6cd8bd905c09bb0c1ce4a768771667db763991cb Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2009-04-27T15:28:51 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 6 ++++++ UI/Scheduler/UIxCalListingActions.m | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) 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;