Monotone-Parent: 0fae105daa23d0bfd278a2c1253b578984b8876e

Monotone-Revision: 2977eee44dc8cb28a84d3198502b07eacfaf2472

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2009-12-11T14:57:57
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2009-12-11 14:57:57 +00:00
parent f08aed28d3
commit 23dc7dd474
2 changed files with 10 additions and 1 deletions
+6
View File
@@ -1,3 +1,9 @@
2009-12-11 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/PreferencesUI/UIxPreferences.m (-setUserShortDateFormat:):
fixed handling of the value "default", which actually should
unset the value in the user defaults.
2009-12-09 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/SOGoUserFolder.m (-toManyRelationShipKeys)
+4 -1
View File
@@ -207,7 +207,10 @@
- (void) setUserShortDateFormat: (NSString *) newFormat
{
[userDefaults setShortDateFormat: newFormat];
if ([newFormat isEqualToString: @"default"])
[userDefaults unsetShortDateFormat];
else
[userDefaults setShortDateFormat: newFormat];
}
- (NSArray *) longDateFormatsList