Monotone-Parent: 04bea15431a5d37d2c52ccda4a30d78b57741793

Monotone-Revision: 1446e7383727bc0d371dfafcec06697f030f7117

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2012-02-20T14:50:54
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau 2012-02-20 14:50:54 +00:00
parent 446b4e333f
commit 04e09e0b61
3 changed files with 6 additions and 17 deletions

View file

@ -1,3 +1,9 @@
2012-02-20 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreObject.m (-setMAPIRetainCount)
(-retainCount): removed accessors as well as the corresponding
"mapiRetainCount" ivar as this was part of an unused feature.
2012-02-16 Francis Lachapelle <flachapelle@inverse.ca> 2012-02-16 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/UIxAttendeesEditor.js (checkAttendee): * UI/WebServerResources/UIxAttendeesEditor.js (checkAttendee):

View file

@ -45,8 +45,6 @@
{ {
const IMP *classGetters; const IMP *classGetters;
uint32_t mapiRetainCount;
NSMutableArray *parentContainersBag; NSMutableArray *parentContainersBag;
MAPIStoreObject *container; MAPIStoreObject *container;
id sogoObject; id sogoObject;
@ -62,10 +60,6 @@
- (id) initWithSOGoObject: (id) newSOGoObject - (id) initWithSOGoObject: (id) newSOGoObject
inContainer: (MAPIStoreObject *) newFolder; inContainer: (MAPIStoreObject *) newFolder;
/* HACK: MAPI retain count */
- (void) setMAPIRetainCount: (uint32_t) newCount;
- (uint32_t) mapiRetainCount;
- (void) setIsNew: (BOOL) newIsNew; - (void) setIsNew: (BOOL) newIsNew;
- (BOOL) isNew; - (BOOL) isNew;

View file

@ -100,7 +100,6 @@ static Class NSExceptionK, MAPIStoreFolderK;
{ {
if ((self = [super init])) if ((self = [super init]))
{ {
mapiRetainCount = 0;
classGetters = (IMP *) MAPIStorePropertyGettersForClass (isa); classGetters = (IMP *) MAPIStorePropertyGettersForClass (isa);
parentContainersBag = [NSMutableArray new]; parentContainersBag = [NSMutableArray new];
container = nil; container = nil;
@ -136,16 +135,6 @@ static Class NSExceptionK, MAPIStoreFolderK;
[super dealloc]; [super dealloc];
} }
- (void) setMAPIRetainCount: (uint32_t) newCount
{
mapiRetainCount = newCount;
}
- (uint32_t) mapiRetainCount
{
return mapiRetainCount;
}
- (void) setIsNew: (BOOL) newIsNew - (void) setIsNew: (BOOL) newIsNew
{ {
isNew = newIsNew; isNew = newIsNew;