Monotone-Parent: 19411003409b1b14299b09729d662efa35865717

Monotone-Revision: 93f5621e5282201f7b9a61447d23a396e8f682a4

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2009-03-23T13:10:33
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2009-03-23 13:10:33 +00:00
parent 159f0cd76d
commit 03055a3444
2 changed files with 10 additions and 1 deletions
+7
View File
@@ -1,3 +1,10 @@
2009-03-23 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Contacts/SOGoContactFolders.m ([SOGoContactFolders
-appendSystemSources]): modified the return type and returns nil,
to match the new SOGoParentFolder definition of the method.
Otherwise, a confusion is created on the stack.
2009-03-23 Ludovic Marcotte <lmarcotte@inverse.ca>
* SoObjects/SOGo/SOGoUser.m:
+3 -1
View File
@@ -50,7 +50,7 @@
return [SOGoContactGCSFolder class];
}
- (void) appendSystemSources
- (NSException *) appendSystemSources
{
LDAPUserManager *um;
NSEnumerator *sourceIDs;
@@ -68,6 +68,8 @@
[currentFolder setLDAPSource: [um sourceWithID: currentSourceID]];
[subFolders setObject: currentFolder forKey: currentSourceID];
}
return nil;
}
- (NSString *) defaultFolderName