mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-22 11:55:24 +00:00
Monotone-Parent: 41c549a27b33b99df942c4323fe0f13a3685b452
Monotone-Revision: 6eaf6174c29120b42c4617db2b95738f6ff7ce29 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-06-12T15:38:48 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
2007-06-12 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* UI/SOGoUI/SOGoDateFormatter.m ([SOGoDateFormatter
|
||||
-stringForSecondsSinceThe70s:seconds]): new utility method.
|
||||
|
||||
* UI/Scheduler/UIxCalListingActions.m ([UIxCalListingActions
|
||||
-eventsListAction]): no longer reduce the end day of one day for
|
||||
all day events since everything has been fixed in
|
||||
|
||||
@@ -41,6 +41,7 @@
|
||||
- (void)setFullWeekdayNameAndDetails;
|
||||
|
||||
- (NSString *)stringForObjectValue:(id)_obj;
|
||||
- (NSString *) stringForSecondsSinceThe70s: (unsigned int) seconds;
|
||||
|
||||
- (NSString *)shortDayOfWeek:(int)_day;
|
||||
- (NSString *)fullDayOfWeek:(int)_day;
|
||||
|
||||
@@ -58,11 +58,18 @@
|
||||
|
||||
/* operation */
|
||||
|
||||
- (NSString *)stringForObjectValue:(id)_obj {
|
||||
- (NSString *) stringForObjectValue: (id) _obj
|
||||
{
|
||||
return [self performSelector:self->formatAction
|
||||
withObject:_obj];
|
||||
}
|
||||
|
||||
- (NSString *) stringForSecondsSinceThe70s: (unsigned int) seconds
|
||||
{
|
||||
return [self stringForObjectValue:
|
||||
[NSCalendarDate dateWithTimeIntervalSince1970: seconds]];
|
||||
}
|
||||
|
||||
/* Helpers */
|
||||
|
||||
- (NSString *)shortDayOfWeek:(int)_day {
|
||||
|
||||
Reference in New Issue
Block a user