See ChangeLog

Monotone-Parent: a9f8f863ba0feb17a87ae1239a496d8cd5ab18df
Monotone-Revision: 12ed84168f6783b4fa69a1d4907b40a7e5ca0946

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2008-12-05T01:20:59
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Ludovic Marcotte 2008-12-05 01:20:59 +00:00
parent d06e7e8423
commit 0ea6f9f468
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2008-12-04 Ludovic Marcotte <lmarcotte@inverse.ca>
* Fixed a typ in SoObjects/SOGo/SOGoCache.m
that would lead to a crash
2008-12-03 Francis Lachapelle <flachapelle@inverse.ca>
* UI/MailPartViewers/UIxMailPartICalViewer.m

View File

@ -248,7 +248,7 @@ static SOGoCache *sharedCache = nil;
if ((user = [users objectForKey: uid]))
{
[[user userDefaults] setValues: [[theNotification userInfo] objectForKey: @"values"]];
[self setCachedUserDefaults: [user userDefaults] forKey: uid];
[SOGoCache setCachedUserDefaults: (SOGoUserDefaults*)[user userDefaults] user: uid];
}
else
{
@ -266,7 +266,7 @@ static SOGoCache *sharedCache = nil;
if ((user = [users objectForKey: uid]))
{
[[user userSettings] setValues: [[theNotification userInfo] objectForKey: @"values"]];
[self setCachedUserSettings: [user userSettings] forKey: uid];
[SOGoCache setCachedUserSettings: (SOGoUserDefaults *)[user userSettings] user: uid];
}
else
{