Monotone-Parent: d46f4a0ff945f9aea6a53dcd6b70ed69289186dc

Monotone-Revision: fd90ae60f7879a303cc5d6b24e64a0a382068323

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-07-14T21:35:11
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2011-07-14 21:35:11 +00:00
parent 49e302894d
commit 592832ed13
2 changed files with 10 additions and 0 deletions

View File

@ -1,5 +1,7 @@
2011-07-14 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreTable.m: added memory debugging output.
* OpenChange/NSArray+MAPIStore.m (-asFoldersListInCtx:) removed
useless method.
(-asArrayOfUnicodeStringsInCtx:) properly connect the talloc

View File

@ -273,6 +273,7 @@ static Class NSDataK, NSStringK;
{
if ((self = [super init]))
{
[self logWithFormat: @"-init"];
tableType = MAPISTORE_MESSAGE_TABLE;
handleId = -1;
@ -309,8 +310,15 @@ static Class NSDataK, NSStringK;
return [super retain];
}
- (void) release
{
[self logWithFormat: @"-release"];
[super release];
}
- (void) dealloc
{
[self logWithFormat: @"-dealloc"];
if (container)
[[MAPIStoreActiveTables activeTables] unregisterTable: self];
[currentChild release];