Monotone-Parent: 7775a7380ebd3dd5214041f2ffd9d340d28c78e6

Monotone-Revision: 0efb53c264bc07ad8447b30af179f4976d61eb6d

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-06-19T18:04:43
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2007-06-19 18:04:43 +00:00
parent 242139d45d
commit c6361c1585
3 changed files with 3 additions and 14 deletions

View File

@ -1,5 +1,8 @@
2007-06-19 Wolfgang Sourdeau <wsourdeau@inverse.ca> 2007-06-19 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/Scheduler/UIxComponentEditor.m ([-titleDateFormatter]):
removed useless method.
* SoObjects/SOGo/SOGoDateFormatter.m: rewrote class to accept * SoObjects/SOGo/SOGoDateFormatter.m: rewrote class to accept
different configurable formats (long and short date + time). different configurable formats (long and short date + time).

View File

@ -28,7 +28,6 @@
@class NSArray; @class NSArray;
@class NSCalendarDate; @class NSCalendarDate;
@class NSDictionary; @class NSDictionary;
@class NSFormatter;
@class NSString; @class NSString;
@class iCalPerson; @class iCalPerson;
@ -132,7 +131,6 @@
- (BOOL) canEditComponent; - (BOOL) canEditComponent;
/* helpers */ /* helpers */
- (NSFormatter *) titleDateFormatter;
- (NSString *) completeURIForMethod: (NSString *) _method; - (NSString *) completeURIForMethod: (NSString *) _method;
- (BOOL) isWriteableClientObject; - (BOOL) isWriteableClientObject;
- (NSException *) validateObjectForStatusChange; - (NSException *) validateObjectForStatusChange;

View File

@ -41,7 +41,6 @@
#import <NGExtensions/NSObject+Logs.h> #import <NGExtensions/NSObject+Logs.h>
#import <NGExtensions/NSString+misc.h> #import <NGExtensions/NSString+misc.h>
#import <UI/SOGoUI/SOGoDateFormatter.h>
#import <SoObjects/Appointments/SOGoAppointmentFolder.h> #import <SoObjects/Appointments/SOGoAppointmentFolder.h>
#import <SoObjects/Appointments/SOGoAppointmentObject.h> #import <SoObjects/Appointments/SOGoAppointmentObject.h>
#import <SoObjects/Appointments/SOGoTaskObject.h> #import <SoObjects/Appointments/SOGoTaskObject.h>
@ -589,17 +588,6 @@
} }
/* helpers */ /* helpers */
- (NSFormatter *) titleDateFormatter
{
SOGoDateFormatter *fmt;
fmt = [[SOGoDateFormatter alloc] initWithLocale: [self locale]];
[fmt autorelease];
[fmt setFullWeekdayNameAndDetails];
return fmt;
}
- (NSString *) completeURIForMethod: (NSString *) _method - (NSString *) completeURIForMethod: (NSString *) _method
{ {
NSString *uri; NSString *uri;