Monotone-Parent: 52d09aa0142faf1d899aec818efc042bb0a80af2

Monotone-Revision: 786210997f829cabfafa14947b9eca68c7e9a190

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-11-08T17:06:32
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-11-08 17:06:32 +00:00
parent f251323a29
commit 8a67f9cf03
2 changed files with 9 additions and 0 deletions

View File

@@ -1,3 +1,10 @@
2007-11-08 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/AgenorUserDefaults.m ([AgenorUserDefaults
-primaryFetchProfile]): when no row is returned, we initialize
"values" to a new dictionary. This solves a bug where the defaults
would not be initialized properly.
2007-11-07 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/SOGoGCSFolder.m ([-compare:otherFolder]): method

View File

@@ -163,6 +163,8 @@ static NSString *uidColumnName = @"c_uid";
else
values = [NSMutableDictionary new];
}
else
values = [NSMutableDictionary new];
ASSIGN (lastFetch, [NSCalendarDate date]);
defFlags.modified = NO;