mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-20 19:05:25 +00:00
Monotone-Parent: bf42b4068082eb38268bdf4f7034597312c2bb7c
Monotone-Revision: 30ddfff1991c7e39d67fc5f3c46b308d273ee14a Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-09-06T14:40:54 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
2006-09-06 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* UI/SOGoUI/UIxComponent.m ([UIxComponent -selectedDate]): make
|
||||
sure the numbers in dateString are formatted so as to take 4 chars
|
||||
for the year and 2 for the day and the month, otherwise
|
||||
NSCalendarDate will return a nil date.
|
||||
|
||||
2006-09-05 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* UI/SOGoUI/UIxComponent.m ([UIxComponent -selectedDate]): add the
|
||||
|
||||
@@ -384,7 +384,7 @@ static BOOL uixDebugEnabled = NO;
|
||||
else
|
||||
{
|
||||
cdate = [NSCalendarDate calendarDate];
|
||||
dateString = [NSString stringWithFormat: @"%d%d%d %@",
|
||||
dateString = [NSString stringWithFormat: @"%.4d%.2d%.2d %@",
|
||||
[cdate yearOfCommonEra],
|
||||
[cdate monthOfYear],
|
||||
[cdate dayOfMonth],
|
||||
|
||||
Reference in New Issue
Block a user