diff --git a/ChangeLog b/ChangeLog index 2775b2132..c8fce58af 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2007-02-13 Wolfgang Sourdeau + * UI/Scheduler/UIxCalView.m ([UIxCalView -redirectForUIDsAction]): + replaced use of [NSString stringByTrimmingWhiteSpaces] with + [NSString stringByTrimmingSpaces]. + * UI/MailPartViewers/UIxMailPartICalViewer.m: request the key "cnWithoutQuotes" instead of "cnForDisplay", which no longer exists. diff --git a/UI/Scheduler/UIxCalView.m b/UI/Scheduler/UIxCalView.m index 0c42a3b95..48b7cf9aa 100644 --- a/UI/Scheduler/UIxCalView.m +++ b/UI/Scheduler/UIxCalView.m @@ -1,4 +1,4 @@ -// $Id: UIxCalView.m 1018 2007-02-08 16:37:00Z wolfgang $ +// $Id: UIxCalView.m 1021 2007-02-12 20:56:24Z wolfgang $ #import "common.h" //#import @@ -602,7 +602,7 @@ static BOOL shouldDisplayWeekend = NO; unsigned index; uidsString = [self queryParameterForKey: @"userUIDString"]; - uidsString = [uidsString stringByTrimmingWhiteSpaces]; + uidsString = [uidsString stringByTrimmingSpaces]; [self setQueryParameter: nil forKey: @"userUIDString"]; prevMethod = [self queryParameterForKey: @"previousMethod"];