mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-21 11:25:24 +00:00
Monotone-Parent: 0736f4d4ec3208b934e9888e6cf09014b905774b
Monotone-Revision: 3541b0465209c659178d752da6f97c5063fbc108 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2011-04-19T21:49:11 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
2011-04-19 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* OpenChange/code-MAPIStorePropertySelectors.m
|
||||
(MAPIStorePropertyGettersForClass): use the
|
||||
"MAPIStoreProeprtyGetter" type rather than IMP as result type.
|
||||
|
||||
* OpenChange/MAPIStoreFolderTable.m (-restrictedChildKeys): no
|
||||
longer a mandatory method, returns [self childKeys] when not
|
||||
overriden and issue an error message.
|
||||
|
||||
@@ -22,5 +22,5 @@
|
||||
|
||||
typedef int (*MAPIStorePropertyGetter) (id inst, SEL _cmd, void **data);
|
||||
|
||||
const IMP *MAPIStorePropertyGettersForClass (Class klass);
|
||||
SEL MAPIStoreSelectorForPropertyGetter (register uint16_t propertyId);
|
||||
const MAPIStorePropertyGetter *MAPIStorePropertyGettersForClass (Class klass);
|
||||
SEL MAPIStoreSelectorForPropertyGetter (uint16_t propertyId);
|
||||
|
||||
@@ -23,12 +23,12 @@
|
||||
#import <Foundation/NSMapTable.h>
|
||||
#import <NGExtensions/NGLogger.h>
|
||||
|
||||
const IMP *
|
||||
const MAPIStorePropertyGetter *
|
||||
MAPIStorePropertyGettersForClass (Class klass)
|
||||
{
|
||||
static NSMapTable *classesTable = nil;
|
||||
IMP *getters;
|
||||
IMP getter;
|
||||
MAPIStorePropertyGetter *getters;
|
||||
MAPIStorePropertyGetter getter;
|
||||
uint16_t count, idx;
|
||||
SEL currentSel;
|
||||
|
||||
@@ -40,7 +40,7 @@ MAPIStorePropertyGettersForClass (Class klass)
|
||||
getters = NSMapGet (classesTable, klass);
|
||||
if (!getters)
|
||||
{
|
||||
getters = NSZoneCalloc (NULL, 65536, sizeof (IMP));
|
||||
getters = NSZoneCalloc (NULL, 65536, sizeof (MAPIStorePropertyGetter));
|
||||
for (count = 0; count < 65535; count++)
|
||||
{
|
||||
idx = MAPIStorePropertyGettersIdx[count];
|
||||
@@ -49,7 +49,8 @@ MAPIStorePropertyGettersForClass (Class klass)
|
||||
currentSel = MAPIStorePropertyGetterSelectors[idx];
|
||||
if ([klass instancesRespondToSelector: currentSel])
|
||||
{
|
||||
getter = [klass instanceMethodForSelector: currentSel];
|
||||
getter = (MAPIStorePropertyGetter)
|
||||
[klass instanceMethodForSelector: currentSel];
|
||||
if (getter)
|
||||
getters[count] = getter;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user