diff --git a/ChangeLog b/ChangeLog index fbf2c74c6..6511a4379 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2007-06-19 Wolfgang Sourdeau + * UI/Scheduler/UIxComponentEditor.m ([-titleDateFormatter]): + removed useless method. + * SoObjects/SOGo/SOGoDateFormatter.m: rewrote class to accept different configurable formats (long and short date + time). diff --git a/UI/Scheduler/UIxComponentEditor.h b/UI/Scheduler/UIxComponentEditor.h index 087fc1f0f..71c511a6e 100644 --- a/UI/Scheduler/UIxComponentEditor.h +++ b/UI/Scheduler/UIxComponentEditor.h @@ -28,7 +28,6 @@ @class NSArray; @class NSCalendarDate; @class NSDictionary; -@class NSFormatter; @class NSString; @class iCalPerson; @@ -132,7 +131,6 @@ - (BOOL) canEditComponent; /* helpers */ -- (NSFormatter *) titleDateFormatter; - (NSString *) completeURIForMethod: (NSString *) _method; - (BOOL) isWriteableClientObject; - (NSException *) validateObjectForStatusChange; diff --git a/UI/Scheduler/UIxComponentEditor.m b/UI/Scheduler/UIxComponentEditor.m index d81be9715..08ef20929 100644 --- a/UI/Scheduler/UIxComponentEditor.m +++ b/UI/Scheduler/UIxComponentEditor.m @@ -41,7 +41,6 @@ #import #import -#import #import #import #import @@ -589,17 +588,6 @@ } /* helpers */ -- (NSFormatter *) titleDateFormatter -{ - SOGoDateFormatter *fmt; - - fmt = [[SOGoDateFormatter alloc] initWithLocale: [self locale]]; - [fmt autorelease]; - [fmt setFullWeekdayNameAndDetails]; - - return fmt; -} - - (NSString *) completeURIForMethod: (NSString *) _method { NSString *uri;