From 49355ad58ef6c1a7a5fdaaf53d7a160b99fd8ed7 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Tue, 13 Feb 2007 15:58:52 +0000 Subject: [PATCH] Monotone-Parent: 5a7ed8a46bd6ef6b9403778a6f4259d10afb482b Monotone-Revision: 186b469cad770bcd937bcbeb5a002ccd19d3b4aa Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-02-13T15:58:52 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 4 ++++ UI/Scheduler/UIxCalView.m | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) 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"];