Monotone-Parent: 999389a6cb3e539aba3be3c471cee2589def445e

Monotone-Revision: 0736f4d4ec3208b934e9888e6cf09014b905774b

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-04-19T21:44:10
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2011-04-19 21:44:10 +00:00
parent 1e4ac9d58d
commit dd78ce2dcb
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
2011-04-19 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreFolderTable.m (-restrictedChildKeys): no
longer a mandatory method, returns [self childKeys] when not
overriden and issue an error message.
* OpenChange/MAPIStoreFolder.m (-createMessage): no longer a
mandatory method. Returns nil when not overriden.

View File

@ -59,7 +59,7 @@ static MAPIStoreMapping *mapping;
- (NSArray *) restrictedChildKeys
{
[self errorWithFormat: @"restrictions are ignored on folder tables"];
/* FIXME: restrictions are ignored on folder tables */
return [self childKeys];
}