Monotone-Parent: b1ea99e2992e038d5c1adfe3f755a473b8b52150

Monotone-Revision: 31f045130060a24f1eb793184cac83918bf8cede

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2008-02-08T19:36:41
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2008-02-08 19:36:41 +00:00
parent b36ee1f3a1
commit 952f48f7a4
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -1,5 +1,10 @@
2008-02-08 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* 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.
+1 -1
View File
@@ -258,7 +258,7 @@
start = [self namedValue: @"wkst"];
if (![start length])
start = @"SU";
start = @"MO";
return start;
}