Monotone-Parent: ba1ab7317c5e8c4b1e95d7e3f299bfd9ea38b10d

Monotone-Revision: 392e0e0b68e0c3efba94a66ecf87596c3d6d967f

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2012-02-02T01:38:50
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2012-02-02 01:38:50 +00:00
parent 3c4fd611d8
commit 6bec1d842f
2 changed files with 8 additions and 7 deletions

View File

@ -1,3 +1,8 @@
2012-02-01 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIApplication.m (-setUserContext:): do not retain
the user context.
2012-02-01 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/UIxCalUserRightsEditor.js (onUpdateACL):

View File

@ -67,15 +67,11 @@ MAPIApplication *MAPIApp = nil;
return MAPIApp;
}
- (void) dealloc
{
[userContext release];
[super dealloc];
}
- (void) setUserContext: (MAPIStoreUserContext *) newContext
{
ASSIGN (userContext, newContext);
/* user contexts must not be retained here ad their holder (mapistore)
contexts must be active when any operation occurs. */
userContext = newContext;
}
- (id) authenticatorInContext: (id) context