diff --git a/ChangeLog b/ChangeLog index 1b7031cc9..2775b2132 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2007-02-13 Wolfgang Sourdeau + * UI/MailPartViewers/UIxMailPartICalViewer.m: request the key + "cnWithoutQuotes" instead of "cnForDisplay", which no longer + exists. + * UI/Scheduler/UIxCalDayOverview.m, UI/Scheduler/UIxCalDayChartview.m, UI/Scheduler/UIxCalDayListview.m, diff --git a/UI/MailPartViewers/UIxMailPartICalViewer.m b/UI/MailPartViewers/UIxMailPartICalViewer.m index a91b83113..365d144e2 100644 --- a/UI/MailPartViewers/UIxMailPartICalViewer.m +++ b/UI/MailPartViewers/UIxMailPartICalViewer.m @@ -257,7 +257,7 @@ NSString *cn; if ((organizer = [[self authorativeEvent] organizer]) != nil) { - cn = [organizer valueForKey:@"cnForDisplay"]; + cn = [organizer valueForKey:@"cnWithoutQuotes"]; if ([cn isNotNull] && [cn length] > 0) return cn;