Monotone-Parent: b1078ea4dae02277bdf66ea5ad2e7fcdb26dc259

Monotone-Revision: 2f965a12f5d7a6534d7420384246c30f0c8a4bda

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2008-12-15T23:03:04
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2008-12-15 23:03:04 +00:00
parent 4a43370a91
commit ad6d40bd15
2 changed files with 7 additions and 2 deletions
+5
View File
@@ -1,5 +1,10 @@
2008-12-15 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/SOGoObject.m ([SOGoObject +webdavAclManager]):
same as below.
([SOGoObject -doesRetainContainer]): return "NO" here in order to
avoid leaks.
* SoObjects/Appointments/SOGoAppointmentFolder.m
([SOGoAppointmentFolder +webdavAclManager]): same as below.
+2 -2
View File
@@ -134,7 +134,7 @@ SEL SOGoSelectorForPropertySetter (NSString *property)
+ (SOGoWebDAVAclManager *) webdavAclManager
{
SOGoWebDAVAclManager *aclManager = nil;
static SOGoWebDAVAclManager *aclManager = nil;
if (!aclManager)
aclManager = [SOGoWebDAVAclManager new];
@@ -246,7 +246,7 @@ SEL SOGoSelectorForPropertySetter (NSString *property)
- (BOOL) doesRetainContainer
{
return YES;
return NO;
}
- (id) init