From 952f48f7a410ed4dfe4309b07051dbd5f38b66a5 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Fri, 8 Feb 2008 19:36:41 +0000 Subject: [PATCH] Monotone-Parent: b1ea99e2992e038d5c1adfe3f755a473b8b52150 Monotone-Revision: 31f045130060a24f1eb793184cac83918bf8cede Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2008-02-08T19:36:41 Monotone-Branch: ca.inverse.sogo --- SOPE/NGCards/ChangeLog | 5 +++++ SOPE/NGCards/iCalRecurrenceRule.m | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/SOPE/NGCards/ChangeLog b/SOPE/NGCards/ChangeLog index d6521f136..6ecd16f96 100644 --- a/SOPE/NGCards/ChangeLog +++ b/SOPE/NGCards/ChangeLog @@ -1,5 +1,10 @@ 2008-02-08 Wolfgang Sourdeau + * iCalRecurrenceRule.m ([iCalRecurrenceRule -wkst]): if no wkst + parameter is specified, we supply "MO" as default value. + ([iCalRecurrenceRule -weekDayFromICalRepresentation:_day]): the + second letter of sunday if "u", fixed typo. + * CardElement.m ([CardElement -setNamedValue:aValueNameto:aValue]): if the value is empty, we removed the named value. diff --git a/SOPE/NGCards/iCalRecurrenceRule.m b/SOPE/NGCards/iCalRecurrenceRule.m index 006e46365..f53f7988f 100644 --- a/SOPE/NGCards/iCalRecurrenceRule.m +++ b/SOPE/NGCards/iCalRecurrenceRule.m @@ -258,7 +258,7 @@ start = [self namedValue: @"wkst"]; if (![start length]) - start = @"SU"; + start = @"MO"; return start; }