mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-07 14:28:52 +00:00
Monotone-Parent: a0937694695bbf6fd584762040f3111bc201d774
Monotone-Revision: 3326603011bb525080c2877dffe59c41fad761da Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-09-11T20:19:40 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,5 +1,10 @@
|
||||
2007-09-11 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* SoObjects/Contacts/SOGoContactLDAPFolder.m
|
||||
([SOGoContactLDAPFolder
|
||||
+folderWithName:aNameandDisplayName:aDisplayNameinContainer:aContainer]):
|
||||
renamed from "contactFolderWithName..." for compatibility with SOGoFolder.
|
||||
|
||||
* SoObjects/Contacts/SOGoContactGCSFolder.m ([SOGoContactGCSFolder
|
||||
+contactFolderWithName:aNameandDisplayName:aDisplayNameinContainer:aContainer]):
|
||||
removed method, reimplemented in SOGoFolder.
|
||||
|
||||
@@ -37,9 +37,12 @@
|
||||
BOOL ignoreSoObjectHunger;
|
||||
}
|
||||
|
||||
- (id <SOGoContactFolder>) initWithName: (NSString *) newName
|
||||
andDisplayName: (NSString *) newDisplayName
|
||||
inContainer: (SOGoObject *) newContainer;
|
||||
+ (id) folderWithName: (NSString *) aName
|
||||
andDisplayName: (NSString *) aDisplayName
|
||||
inContainer: (id) aContainer;
|
||||
- (id) initWithName: (NSString *) newName
|
||||
andDisplayName: (NSString *) newDisplayName
|
||||
inContainer: (id) newContainer;
|
||||
- (void) setLDAPSource: (LDAPSource *) newLdapSource;
|
||||
|
||||
@end
|
||||
|
||||
@@ -41,11 +41,11 @@
|
||||
|
||||
@implementation SOGoContactLDAPFolder
|
||||
|
||||
+ (id <SOGoContactFolder>) contactFolderWithName: (NSString *) aName
|
||||
andDisplayName: (NSString *) aDisplayName
|
||||
inContainer: (SOGoObject *) aContainer
|
||||
+ (id) folderWithName: (NSString *) aName
|
||||
andDisplayName: (NSString *) aDisplayName
|
||||
inContainer: (id) aContainer
|
||||
{
|
||||
SOGoContactLDAPFolder *folder;
|
||||
id folder;
|
||||
|
||||
folder = [[self alloc] initWithName: aName
|
||||
andDisplayName: aDisplayName
|
||||
@@ -68,9 +68,9 @@
|
||||
return self;
|
||||
}
|
||||
|
||||
- (id <SOGoContactFolder>) initWithName: (NSString *) newName
|
||||
andDisplayName: (NSString *) newDisplayName
|
||||
inContainer: (SOGoObject *) newContainer
|
||||
- (id) initWithName: (NSString *) newName
|
||||
andDisplayName: (NSString *) newDisplayName
|
||||
inContainer: (id) newContainer
|
||||
{
|
||||
if ((self = [self initWithName: newName
|
||||
inContainer: newContainer]))
|
||||
|
||||
Reference in New Issue
Block a user