mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-18 09:55:25 +00:00
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:
@@ -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)
|
||||
|
||||
@@ -207,7 +207,10 @@
|
||||
|
||||
- (void) setUserShortDateFormat: (NSString *) newFormat
|
||||
{
|
||||
[userDefaults setShortDateFormat: newFormat];
|
||||
if ([newFormat isEqualToString: @"default"])
|
||||
[userDefaults unsetShortDateFormat];
|
||||
else
|
||||
[userDefaults setShortDateFormat: newFormat];
|
||||
}
|
||||
|
||||
- (NSArray *) longDateFormatsList
|
||||
|
||||
Reference in New Issue
Block a user